-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathreuse.spdx
More file actions
3371 lines (2950 loc) · 175 KB
/
reuse.spdx
File metadata and controls
3371 lines (2950 loc) · 175 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SPDXVersion: SPDX-2.1
DataLicense: CC0-1.0
SPDXID: SPDXRef-DOCUMENT
DocumentName: btp-dev-guidance
DocumentNamespace: http://spdx.org/spdxdocs/spdx-v2.1-871b1f64-e2e2-405d-84da-512439e577e1
Creator: Person: Anonymous ()
Creator: Organization: Anonymous ()
Creator: Tool: reuse-5.0.2
Created: 2025-02-19T14:25:19Z
CreatorComment: <text>This document was created automatically using available reuse information consistent with REUSE.</text>
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-16221415f67c5d00a55f28006bb55e40
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1dc7d75602847f5c54768584b7b39a6f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5f8adecde3045a70c4b71a1b73b363e2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e70a1b7d2895d65ad7279772b157776e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-22bccbb1895c871e87eac41d257e09c0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c95433064b5c520bf6dc76edceef34d7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cb9c6a314a45a5b24bf5c2ab506ba0c9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4356520daba9fef188d10efba2aa0e43
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-62f7939210abc43ab38254a14af7d8a7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-14c55dafee85f858b7f6fa5e82223e49
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6d3c078f0d8e11cbc19c9ab21a732c5d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bf14b22e1afd9ccabd1da5fd848449b6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0d5ffe727912cb125d082d6052fce707
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-03ac725bfd3ad78da127207d5045ab04
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-de9fa7a3eb16ba8967e7c1fdf358533c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2577ed4eb6e83188460f0a7e3707855f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b54310551064c2023f19036d851be0ac
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6bdcc86e0351ee54b49b19a036e4dd44
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2f5e7b87cb74d7685b0e1a012ab26c2a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-59d2140cbb11f921a4330a15194125b7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0649e22e8e8081fbc5c8e3ab463b2f9d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-92948ac6614b5f29ef468bd684234ef6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cc6917f271c6767cdfdcaa575af76f57
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b13dc3bc1c6cfa10b626b5b0bd08972f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1ab30b6cb35a170c76b6aed1c994d20e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3bcad3ce19f81f84559697c144b24a21
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-69fecc75fded918fa66b7f485d527641
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-70528b0706758e04ed85aeb4c2397dcb
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b0164c98d2e7b504b03aea2bc243f260
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6f12d8fe2f9e81c3fe02b36da7f59c75
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c6479dff4701e6c2c2c067d0d5b0330e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4352058edf8e4ba4627cbdc31ef73f77
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c50697c5c7dd68e728ffa80904391be8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d20b5af812c01c182fe107e72ce4a754
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ca0dab96cacf10f61b45605c720c3075
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9abadfcf20f07b2af64f55a10cec56fc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bd693b7e80973f9867be88e128e38048
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a7a53d4bf43a19893348d27d498d809e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-493413be5e7a53b3fd0ba8e784fbb7a8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8c370b51136931a3bc8701b993da2e9f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d7258ea713342adb881ca8082f486418
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-244642972b0f8143ea1596fc5cee93e1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-859584665ab7324f38522f62eaa2ac71
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b60943a640b09008f87df25592668b62
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-76d14de34d9f387f0c111b0731eba608
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d14ba2017d5ba9fe329f7189ae033354
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b9d2a158aa8349e9c1365e6a6aa94058
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-abdd9b1880da03fe1eb8f05baa23d363
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5db8c730a332a2a7ed0da8a2ed1659cb
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4824fbf27a18ef08e5e892208c2e317f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a9132c9f24ee132c998f5b5f33a9a8e9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f29a28673591df47c0bfdbfb7dbd81fe
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d4823c9d84dc6a0d96b83819172ec6b7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-29cdf2f9df56631d6b01b812a2a07d97
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-404dc0138fc081bae34fc99cb7f1a59c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-eaa279a8921816029c199337d1cd55f2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9c7c172107d35ca2e6c8062ef3bf4598
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5eaf5c0869b0945a26d36af04c7e195e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5e8153e318f584ab90a8c46d10a8d0d0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e5d940c492d6793f6bb94ba74fa737a2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b4c93ea3fdb85a1fa5059b2e39e3bb96
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-66010a3e3d8810fac4779fc397e7f22f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-77e87af9706802a335bd24ad98ca3a56
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f634f0d407978149b3935fa1c9282197
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8e497f1bf2af6dfc48eaa492e552992c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-60e783b765f8a07c7de6e8c973af2196
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2ea785cf181bbbd620b90110c9de4c30
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7cf4976dc5b2b74f90a4b09050c2820f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c8de114b8eb01d77bd0bbe4072684036
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6de97d839d38bb34735cfbbe6cbdcd95
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c84bd1d9d53d898222cee7f712a6ef08
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e2acc113c473c58ce05ed562d0df189c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4a7b7ac3fff8d80be23c9f2162547ed8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2f34943d34cb1e9c02523972ce7021ee
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e9d0213e59da70d2a50843c0b37f2af3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9b21f2471e050f4eef1f1cc9014adef0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ec0a088f4166e71e6bdd82f9990681c2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-af7b6f1248024525b8a9054ecb4cf91c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d5ff7202a6da96f6cdbbe6cd93268ac7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-10658c4e5520d1972811edc790dfd112
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-074eb76e9abb15949fb762ac141a569e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c5c99624e21055dfd67c7f3815d9e3ca
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a8d8af78cc446dc3e0ac7be33fd56d10
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bd86bff93555d516d7d55198051bf817
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7366b21c223c57b2e2c2d6c5468890d6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e309760b246a1b9f59a318b258f4d5aa
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f78003f28e6d213cad1938f04c78fddc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-357c157d14d74b886b557a145f759bd5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8bc34dbb9b4078123a7b9c28892dd896
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2f8ba86f711d911f7ba940ef18110178
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-52ffb8d622855327158a76ed3d99ac7f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1a5e115e481c6e95fc0dd231d9e2d05d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2f779657f0322eb13aa5183deb22e3c7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0ad5debc0ddf88f5e2c3ca232e24d741
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c1eac5e01ee31513bd53955597a4ab4a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-51c99da666ac4a8a67b3f52653e2bebf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6e6232a1d9197b95241d34173a656a0d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4367e5cbf1a5d5687544e4528cf01f36
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e5a6b685ddacbb677b80bc0a69c9f8b2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-87d13f380364aa3dd7d6daeeef06b732
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e0dfd70c095c04f315aa81f61af1f2c8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4751c634ba1ed1c42dfbfa33a8a04de6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-48d6be0030a23d20c933ac09de7fec50
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c468fa107f788612f64ed6ef35b4d17e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-97579a2561779cabe19f2aa6869c74fd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-55ae7a820158617fabef119b44c5bca5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ad468c2db7ed37666832f26c9280fe85
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c85a9b63867bcdfb8cc952495821f1aa
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ebc669982c9be892abfdbd77dbce120b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c8c4155aec324f92fd68b2014aa4bb4a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-336e05e3afe22b12943c1e155abfe57a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e5c95b1d3bb889f34652cd2148155223
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5834fe6d9f5d79b988ef545a3f570246
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f27b754793976be305c213786bce4d10
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-14e5b31c882c917f9bff7be0dcdb2fea
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7b4c8a062ce63ff340ebf4e542f2f9dd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e7ab60fb35fd771370eb1a222e59001f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4ba35b58e7f359d83880b04850d10a2a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-136e90f61d77092b3f6b04d5d01e3181
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-66e5586b03d90730938e410b8704354d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d80be68de0dbd4338e53880f4666ea9e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6cd0d3cfe62abb3033df225bca95ea72
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-302f77cdfea83a32af11516f2d00cd39
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-47accc4f9bdbe2fac899802457ff34a5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2ac7876205a8cbe7e84300a89896d6d6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-84a04a5e7b2c55e6c56f8ee3888360af
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9ae4029c5e3e58b29efb24aa0bb5d770
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8ebe36ab9517221125b93038f7ff47da
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c0c9b0c9f247493fd3fbc350c5c532c1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-55fc2cb740d8526ed42ed430557b8fd0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-154c5c022a3e06adacd2a7d52121626c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-589da7b50356648a8add4134d94cd27a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ab519ae2f05f6bbe850aba2bb47ee46d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4a4132072d9e5400b509a8fb2214b810
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9ca5b184d64476f5079139ce53c792a0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7f873d0d25a3211fb60f1dbbf3bebb2f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-74708ede9e4e43a9e6d3075f96dd0c83
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f31408956f9ccf7fff718d83ac6bbdd1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e3c05e62ffe7af2d673066eb4a8b2487
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b59457088212fd6bea99b4436f03c0be
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dca194a88d10f6ee339c5089b75e0cb2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-25a4e57831204e6119bc4bf39a38ffd8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c345d55ad2db24b301a1b3c0872c91ed
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-151ea755c23bf97162c9c6f6c5fbb054
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-625fdf365a9af440792a119be9637d8d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c7020a1a56cabe1609b13f94e63e6933
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d15cb2e445f0eb1923c01f15b26b2cf3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cbcf1137ef78f9dd99e771eab51bbd7f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-21093e7a5db65e8417506bca2625784f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-30b746bfe196c2452c6b106395ad34cd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-19de67daec3802d2ea10b9cfaa958a6b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-232dc1265a2d2fcb427337ce54fa2e8e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-00fc41e2db4d6756081691f7e8b68525
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e9eff60a59c109944eec5cd377ec213f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a01e4a6dbf57230d0f261971f3bedf70
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-00192a59540cc9d614bc88b7927b14c0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0f70baa017193a03a4ca01d13f9f6286
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8f7de00425a316108bb9b4a03de84e24
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1079da600828eded06b27e003d256955
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7f6e813a6d38fe95f982b2a19bccd7ca
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8643292be773a087e3264aaef26660d9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2db03d1bbf7ba63210e95351dca00ca7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-482f8268b8462f77bc426bf94bc7483f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-86610b1fe260160d0c5eaae4a7e946c3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-69fdc93f4ee8b65bcbb30a336d09d987
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0da7896367dd1bd5a85264695f18e952
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-30eb248537f6a3e0178fc1a6c485dbd2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-56b6093960e778bfa6ba770a1049d922
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-40aff7709e2a0dde13da63ecced10fe5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-650986ca88e7da11980c4147f68821ff
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-66cf8a729ba157d2f95abae7e129f08d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1a1dceedf49670f566f71fca3488fe59
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-be7913af344da99ebf5b4ac888427a36
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7ec982ad6ab8aa1c8964c42753993558
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-52631b7c1846f45d1762c277cad1e024
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-81fb9949eb6e9e4306322c27dbc431a6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-41638ea442cc5cb4e8656d9f2bad6088
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b8e7edb4646bfeb720a795084cc77a36
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-beac79d37ed4e4b25ca75fa2b71a666b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cacc95c5c4faf96a7826d3a607658699
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d3ab832d35dd4898f04585c74ca2997f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5bc79b88e11266e8ed1b44656d185d98
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-263e3a748e6f4d9a4cb2a97af7c36efb
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d240a6fcfcc62e9005f9233ddb4596de
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e3fd2ad7cbb8a1faa074a995728e5641
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f402e006a71fe67592319fa3335d7c75
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d80655f03fa2bf4acac5c1dfe9d51692
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-84a224f5598db5fdab5c6caea9664e73
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-869f9a065b3e3498699586960f26ecbd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-89b2617843660dc23e82e1630a9590f4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-30daeea3b7358b208ea026c09bbc5e3d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c668983ae544c56323ffdb579ba8aa85
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-578ee354d4626bdbc02b61dfab4f1dba
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2a32589d150877d945a9991391632808
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e05821c834a32bd7ea2173fa2775160a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c5375d1b6f0b5ff80047e3cf6f4174f7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-102cbf480d9b0ccf5b572356a654f6a7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e91888e51a14aa898e0a7fae70b48b41
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3443819d636b92f7ce33e924509f4a45
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f5f8a4c038da6b624af03663215d9aa0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-38d54f3ccc24827835f0a57f501220b7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e0dc9e1b25d06f373bd6362792451add
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ab32fc55217299086a6a8a619e670e9f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5ae5048fb76372ac019985679c1f922a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-beb282f994317bb65a148d0025f290c0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a6b7aa584fb32703fa1ff379e50f2e5e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9f706f6a765960bc90266a20e197bae2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4b7bd51f22623ebefc872347d430bc9d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4b9caae36430cadcf72e4688ed658afa
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e01d578224754db33e05d31e967377b4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-63e15ef48df7a9cd43edff54c0c6d705
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-be93cb68e705fb803bc9a1367c0043bc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7929a0e5db01f91c0d11a6db4bb98948
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4cf504300908e99997c5c85c03e11d17
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-34b5144fc20f5a83e70f5d258e4eebd6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-912acedc72c87a776b95489e521f3c08
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-15438ce3303725b0f96f98fadae66c33
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1af7833a4be9f5cecbf068eb4004dcb7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6cb766fb4146853f405e36a784c685ba
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d70da8904d2a282363134764e5ebd3ab
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a3bf851b683fd941dec8cc454b014016
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-514cd41de80f850ff5abb26bb8a554f6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c20926713d4dd288620cf8c33efea29d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9312641ed4aea1847175c6fe75b12486
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bcfd0b4c6494bd78a0ab08b805bb876a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-08a1b168cacbe2944f85361ba62d4edc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ff2e9aaba5821892ed9b508a09cb97e3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a21549cdb3c027ecdbcff91359aa1ff9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fdec03a0486d8b37f5003757a3888241
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1a8e58f03fcdfb0103f05accea6766d9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2bbe6158080c2f2223151a84c7fc60d7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ad284dabbac205ba20da1424f7715f12
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f47820d9a645651d23ee46bd3c982d09
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dd23ddc55b05ec7d1a8885065c93a006
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-948d56fbf06ff60cc0268fbc865adac3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-41c5647ed669996ac84efaf29ad1b753
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d91e84026c61d17851df50760bfeab76
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-10591c21b8a99b7bd77250d718619183
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f779ee8cdaedcfc4fdd496060a3d9205
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c2c029104726e7d437f9727fc9b4ca09
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9e57d25549712b4ba124f5e9e4f68cf9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-02850cc65356f6d52d5421f32097f4ff
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e136987c28d635e904a832f0a39b706d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a5643db768c10a1d0854826f657d0b5b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e99d2aa146c5a8930e29bcb9b5d2601b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fe21968257909e44f4f5e89c0860e6f7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-399e1aa3963122caadc787a5afafc501
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-788da440baf59a8e65264d8b282332ea
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f6d8b97a049504a30b2392f94e97eefa
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a64106bf1cdf242177b3a514591adf56
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d021904e1d71fbf5d0193218a783ad9e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4d06bb968fea0916addca7a3c8de41af
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-45704919f41b61f69e75d8553e489523
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8c500157544fc91c988ba1299918962d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-72881b4f3e087eadfb5a2a98fd0e05d4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-11dc12d8875e45951787be926af7dc64
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b5a60cbd01522cd6e5475a55a608b80b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4559712fe89dc297cf5d1881d3cd88f9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-47063f4c136b50469bf6ccbacc108613
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d4084349ea628be35a0bcdbb98476473
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c9ba4037bb9adb2eb5a123298124e6d0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3848a57cef37f1c4f374e31b492cdfb4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1e7e750bd81f9539777e937e72173626
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8e35f7c2e8a6618f1e2bbf587c9a750e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b6e773f154e91b3ce47b5f28711ecbf7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-aaf26dd4a2ce7073439ea3c79cf8c985
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8c326ce94330f2dff75e85ada1a69ad6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-76db7229751616c0a7285976cee45db4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c50191fd6af2b2320153f41471b390ca
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3bd9c4bd1eecf2e7b178e9cc14c65f47
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-48f55846c12c5631444e3c13334c387e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2075f98978646c3c2f4221426ada9d55
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dbf12833971879847727625f1f2ab8d3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-88ce67bd8098e2e271d6c3f499c3bd84
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9425ceb7db630bbd254f419a79bf336c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fef2df90242ad49865998627e10cb4af
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-287011069dfec63aa343a0a3cefd4846
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c4240f923cf1b62600f1b6c352777c80
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0d9d95a367cb6feae203546ab23473dd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5242ffc417e1c53e0e83a4f14a563363
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c82b50f75463641a605448e2b8a7f45f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dad2cb08fdb1b7fc165d879673f54dc4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8840d418c7b59396eae7c8d19338b9bf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a70ff09d7bdaf4fb29292eb02cce3300
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f5192630b605d8647601a5c896bcf736
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c3110046496fd278749ef743bfd41887
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fb953cf2a1ab40f43a62a841a6d5e20f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-099fff16dd2af88bf56d0dae2644410b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4f0dde60dcb758c3fb1e42e8e774d1db
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d80143bd1812270314bda0a341e224cc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fec154c373b3b361cc5230e4f4e95f66
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-26899c10777dc02ec5429148853f3cac
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cca91537cb8fdabf092b25d8a192c14b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7b533905010529aebb5984465b90d13f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-da14240b394731067abe5a4807682f1b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e8e3c84b7e1d3e6bcc3d021348342b5f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-77d1d9e8c98fc5a74af8c9cbc41456a1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-234873b8d26c83fc72bdb7d8070efe10
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-31404836ae666cd778cbad56b7d40bf0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e71159aef1020fa24e41079dd52c1c5f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7fbea2f0563fc3dca4aad4faeff4b233
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8a003b6531c02cae1f92c6ed1638ba59
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5f24a9ce36cf86d44b46428b65a3a875
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d5e79437f564c12f7598e65ea4f37125
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9429b864072b7980823f2873b758a9fc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b2d6b894f76d7ed0de3c00063003f51c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2932c626afea9d446ff7e89e623fd993
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f6c9bd848c7f39df70bbb3c371e17689
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b08e9a1989934b97948c091b80e2e0c7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-977c91ec17deda7f59045655bd561991
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-779b3e759603d9afcd7f3b18acebae3f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5062722735cfee4ccd1bd32fba1ad5f5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-915506ed855c07b3a8ab5c51c862b550
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-247b8a3910afa6a2044f0d7997e27b65
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-df7ae337e151d65588da06ffc0af0301
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-eaf0ca12a63ea0db778bbb56fe1097a3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d99f2f78c9ffbf7b7325296cb3f0140f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-505d5130ef2a14e7e432f97f33a88f86
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-10db909880c03579dd0f5b5b19bdf427
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bdbcc7b8c52731e422cbc4bcff502a8c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f5c00a5455c8aa80fae4b22c7b071b3c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-02da44e84a50e001b7b442f9f75914f8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2305b5a7f6c29c83ecebe056bf7a54e6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c9df8b357d425581224efbadfe3166c9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-be6f123dd4ab22e322404cdbc771ca23
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3b564d9bf6c355251c07d5d9149c0e74
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9535415ce4010722f7c773efe06b3368
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cb172e32c9ba86fc717bf05206faf581
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-096ae34875ec5cbef84c6592e58e6903
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-811ce3e98007df839c72020daf6c9b10
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e913bf086328009e30c50106dc1b3126
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-59fb78e0b9b1f4f128501d8a6a909825
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f1b776e5c820c5624ccab670fe541255
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4e3ee7892b46e4653f1892a6a04277b5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b17b6d1abf06ee0c1363e16118ce9dbd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c800bec303e376436fb44061c15d6550
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1a1a90da276a222f22724e063bdc20ce
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-379b4e9a8e93e09a0e5d1cca5b90733a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1e61b1f2d603fcf3e2f5ed506896929b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f7a39e9bf9f664db83439e39ff527ebd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d66f53984abba229559d1ca2380e89e2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0425bbd3990a6e47a49b7898e6ecb86e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0fd05a9af6a1591761b0e329bded5f09
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5842e6a9b5749043921efae4b8870f62
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-029f3971d6eb335f823bd66fb1b1e19e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-664f7589acdb13d66c4bb3cacbf93a58
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-559649a662b9d0af81ca24f27fb37090
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4a5439caf83509db0ab770d19fd5703f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-58324a7d32614d7476becda7d6c5d279
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6c24a0340dbc85613f1abd7079345a0d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-69ee26b885f50509045a3ad776545c3b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-827121cd75577cc241b6c4bd1d6e7cdf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a85a7ab8be63a9b3a4823c3d99eb52b2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-29cf829c372280e903fd9b00ce4f1370
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ed98ac3ee170d4fc510caa8f93614d7d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-445a74fc7854029a49472473eb3fd63b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dd6df436b0e47d52b05106da77e8a718
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9cf500c63e6551903fd7a45a3258d290
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-12671a5c99933c2817cea4a83267cb10
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1db6af52183067e8d12dcb2e08c76212
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c6001b409d53029770d7036d32e9313f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-838583a487dad92fe158d909316d339c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f1a6509d72f0b894ca9011ac0c86961f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4065f7bdaea304c54ec7fd8c2bf9ce69
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-20332b4819cfc4229e076552758d4d95
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f5f687327ccc1edd6cdb7fb08f9a3284
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-30b213c99b051d31deec44f44310ecc7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-36046e9a2d8d554e8a03ce49175666d5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3409dacbffc5686908e13e102e9d8c6e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f6208c966ac674a019828842ca8d5a24
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fc9b0e197a3925fa32ed48edb4a4b37e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0578e24e3c3016afd5ab210c17ecead4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b8be26f7b1f186916ecfa4435ab8a9cd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3e8b7866f0a5bd1d54e8f44b601cdac0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cc8de8e97b5e1d21aac16d89b12bcfff
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8ccfb5f35652f7f23e3a2505b81c7b0c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d998f50ae34bdf176b55cff42198d7de
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bd204f852697cb2947c1e3d7ba9fcdb9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-82d9c4fc1e8d890b3a3fa91f76151748
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a1fe67f8824e18fb518d04fa06943c87
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0a23abfec3bf4607a2d4441c374712d1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-17abbaffeccf4ad2c75d491c8d191de7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a58e7358027985991c05db05be9c8035
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e417a493b633241f6a927fdee1192d8a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-73c6c01930182680fcf4d2974885c741
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-744cc474b11b6236840d9504768105e3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a3e19da8977b2b7e5737485edf513110
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6aa0e93c0c0542575fe62245a33ee045
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bfce6b705adf6d4f8e65594e9f774a0a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e6571ac5cfb48fba2a7b8ecc29dd5743
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ec8f8c1a9192ebdcf295c992ce51d4a2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fccf7cecfa2a723579b032d2e2f68f5b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-534409f6c1cbc05bafdad9f7271e0584
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f7841755c25951d1664694d64af41434
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d55350d019a30faba108ac5adc1b3fca
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-eec72dfbe08964bce2fa1301085fe278
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7c36550a02a14b462bfc05540461e6fe
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d08210da0fa25c6c11921b0dd6e59fd9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-012907b8ee2a254db8facd2ef4e36020
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1805cbf8eafee81b7380c00fcedde070
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bace54a35aa381d80d58672333f6fa5c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-445a78ae8c836b93643f6212ef98e1f7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-29df5c01d6474345cb27cd669d56d05b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-54ddeae1e2c97052500ac82fb7d94af4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-76e45c74e532fbaa4481c278eea02a4d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3199044162b44a39009ca1ef5f8e6d4e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-aca899f7c3a90795903bf489dd5d32e9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-934eb54b3788557f87fcfba8ae9ee162
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7e74e57138059708f90ab071071857a9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-61b2eee5fe7016a5eccff84fa7ff66e2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9169c54e0c0e9399834051a0bb1ba84b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ad034c17f25b7fa99acbdf12fe70b234
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c59a75da0e7c96d34a3ca294d4177f90
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-10d81cb04659f7c9fa16524b8fbae705
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2dff48a6598e06b2bde2a363555f223d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3210434c10f929a8d26e7dc6ae860329
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-218f616bc5126972b4b93058f6d41cdd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-32137293a49bac3f0dd8d6d8c41065ba
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-49329a08fb710d257759acb5c977cb6e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-759a553299088aa38d58fefae216153b
FileName: ./.circleci\config.yml
SPDXID: SPDXRef-16221415f67c5d00a55f28006bb55e40
FileChecksum: SHA1: 4e5876842623727a3e91c6be725e5f333b4d221f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./.github\workflows\community-requester-id.yaml
SPDXID: SPDXRef-1dc7d75602847f5c54768584b7b39a6f
FileChecksum: SHA1: 849433aefbf2ee647d71b8de286e8e992e87f836
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./.github\workflows\label-issues.yml
SPDXID: SPDXRef-5f8adecde3045a70c4b71a1b73b363e2
FileChecksum: SHA1: dc989794d9b174cc8fe2c92a8a7793c1ff9e74f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./.gitignore
SPDXID: SPDXRef-e70a1b7d2895d65ad7279772b157776e
FileChecksum: SHA1: 8896dbc9375935affe90799ae65012174dfafa5b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./CODE_OF_CONDUCT.md
SPDXID: SPDXRef-22bccbb1895c871e87eac41d257e09c0
FileChecksum: SHA1: 7b13d9819c60e07e51501f6706bc7b62d00c8a61
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./CONTRIBUTING.md
SPDXID: SPDXRef-c95433064b5c520bf6dc76edceef34d7
FileChecksum: SHA1: c001d6c51df7d0eb8a55703defb28924eb906f5d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./README.md
SPDXID: SPDXRef-cb9c6a314a45a5b24bf5c2ab506ba0c9
FileChecksum: SHA1: 3bfabec62cb202e227b81a29bf54a72f10196857
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-authorization\add-authorization.md
SPDXID: SPDXRef-4356520daba9fef188d10efba2aa0e43
FileChecksum: SHA1: 5f790a7c3285e8ba96447e98b47e9ed4e5c029de
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-authorization\incident-management-app.png
SPDXID: SPDXRef-62f7939210abc43ab38254a14af7d8a7
FileChecksum: SHA1: 979b8e79081e19c6d1ef9786918ad94146752c66
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-authorization\local-login-java.png
SPDXID: SPDXRef-14c55dafee85f858b7f6fa5e82223e49
FileChecksum: SHA1: 6a42155cf63b0b4ecf5a0ebbfae7f3ca1ef2db16
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-authorization\local-login.png
SPDXID: SPDXRef-6d3c078f0d8e11cbc19c9ab21a732c5d
FileChecksum: SHA1: dbe6c91b8b75095f086e10765df74337265c2b56
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-custom-logic\add-custom-logic.md
SPDXID: SPDXRef-bf14b22e1afd9ccabd1da5fd848449b6
FileChecksum: SHA1: 33fa146a7534a76f6faa4b589460ac32da1c8840
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-custom-logic\create-new-incident.png
SPDXID: SPDXRef-0d5ffe727912cb125d082d6052fce707
FileChecksum: SHA1: ac107a48ff75c8d1d9b6837bf6d6928552a329c5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-custom-logic\incidentapp.png
SPDXID: SPDXRef-03ac725bfd3ad78da127207d5045ab04
FileChecksum: SHA1: f72fba90d3b261bc2a979eca2f457001a1f085ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\IncidentsUI.png
SPDXID: SPDXRef-de9fa7a3eb16ba8967e7c1fdf358533c
FileChecksum: SHA1: 0f1a22211167ed38600b7c9c57f12692ce6fa9a9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\PageMap-properties.png
SPDXID: SPDXRef-2577ed4eb6e83188460f0a7e3707855f
FileChecksum: SHA1: 20620cc5da23a92b05a90099f0ef8038296311a1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\PageMap.png
SPDXID: SPDXRef-b54310551064c2023f19036d851be0ac
FileChecksum: SHA1: 87dd2f831dea1730ba8ea23ff56517e695b386f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\add-basic-columns-popup.png
SPDXID: SPDXRef-6bdcc86e0351ee54b49b19a036e4dd44
FileChecksum: SHA1: 43ada88645412c5eab842dffb7c1dcb77c25d8d4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\add-fiori-elements-uis.md
SPDXID: SPDXRef-2f5e7b87cb74d7685b0e1a012ab26c2a
FileChecksum: SHA1: 4ba4c2595f62d05735e5f84573fa956bce81af9c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\appInfo.png
SPDXID: SPDXRef-59d2140cbb11f921a4330a15194125b7
FileChecksum: SHA1: 94cc22d4f09487b1fb113095712f1ad014882d04
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\basdeployapp.png
SPDXID: SPDXRef-0649e22e8e8081fbc5c8e3ab463b2f9d
FileChecksum: SHA1: 9c090c0e30153c6e0b4bb29163208869d39120f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\criticality.png
SPDXID: SPDXRef-92948ac6614b5f29ef468bd684234ef6
FileChecksum: SHA1: f30a9e3103980017154d00556986eebbd54d6e37
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\datasourceselection.png
SPDXID: SPDXRef-cc6917f271c6767cdfdcaa575af76f57
FileChecksum: SHA1: 8abd41bd9a14bc1ae1ff157cfd80fd2ba4739990
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\delete-columns.png
SPDXID: SPDXRef-b13dc3bc1c6cfa10b626b5b0bd08972f
FileChecksum: SHA1: a678c512cab7dcec6b0d3a759b0bf4553e14d7cf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\draft-incident-continue.png
SPDXID: SPDXRef-1ab30b6cb35a170c76b6aed1c994d20e
FileChecksum: SHA1: de8e2a6d9080b0cd59dd3edd7bd1f5131f185ddd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\draft-incident-empty.png
SPDXID: SPDXRef-3bcad3ce19f81f84559697c144b24a21
FileChecksum: SHA1: 7ef6fe6a70ed26b540c000b79eeed76032046ebd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\draft-incident-list-view-page.png
SPDXID: SPDXRef-69fecc75fded918fa66b7f485d527641
FileChecksum: SHA1: 2048ba2de640cbe0d63097c345dea16b4e76fc31
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\entityselection.png
SPDXID: SPDXRef-70528b0706758e04ed85aeb4c2397dcb
FileChecksum: SHA1: b1ede190da623b1b8d88d6e6ded9d784c73efc12
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\feappworklist.png
SPDXID: SPDXRef-b0164c98d2e7b504b03aea2bc243f260
FileChecksum: SHA1: 3e77a9951193af420acd9e0785b3a3cb8c83c375
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\fiori1.png
SPDXID: SPDXRef-6f12d8fe2f9e81c3fe02b36da7f59c75
FileChecksum: SHA1: e72cdcdbe730fbd652fdf3f5751798a3c71f765c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\fiori2.png
SPDXID: SPDXRef-c6479dff4701e6c2c2c067d0d5b0330e
FileChecksum: SHA1: 1981b0084fbc2e62307f6ffb433b5aafadfd2a76
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\fiori3.png
SPDXID: SPDXRef-4352058edf8e4ba4627cbdc31ef73f77
FileChecksum: SHA1: 5b78567c02fee302de93988442df2c81a69cdda9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\fiori4.png
SPDXID: SPDXRef-c50697c5c7dd68e728ffa80904391be8
FileChecksum: SHA1: 38c44cbcd98cdd1bad020de1271c75ad4c32b8c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\fiori44.png
SPDXID: SPDXRef-d20b5af812c01c182fe107e72ce4a754
FileChecksum: SHA1: 4aab19b3f9e98093a9b86d9b54ddea190244529b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\fiori5.png
SPDXID: SPDXRef-ca0dab96cacf10f61b45605c720c3075
FileChecksum: SHA1: 2229d208b53dd841675e5cdd5e4a9ecc2c07398f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\index-java.png
SPDXID: SPDXRef-9abadfcf20f07b2af64f55a10cec56fc
FileChecksum: SHA1: 6ad1a9714ac05e85c2657844fba0bf74078a19c8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\listobjectpage.png
SPDXID: SPDXRef-bd693b7e80973f9867be88e128e38048
FileChecksum: SHA1: 859ee9b80975cd96415a21a90e691fb57991da0c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls1.png
SPDXID: SPDXRef-a7a53d4bf43a19893348d27d498d809e
FileChecksum: SHA1: 10791759dd199c13571f84257d8b57151debdbab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls10.png
SPDXID: SPDXRef-493413be5e7a53b3fd0ba8e784fbb7a8
FileChecksum: SHA1: ce86f4bba564e406a159f531d41e2817e27087ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls2.png
SPDXID: SPDXRef-8c370b51136931a3bc8701b993da2e9f
FileChecksum: SHA1: e21640dcb5e55b3311d74c123dd01a0248b316fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls3.png
SPDXID: SPDXRef-d7258ea713342adb881ca8082f486418
FileChecksum: SHA1: 98ff36703d565faf7e313780c48f06e9a54d48bd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls4.png
SPDXID: SPDXRef-244642972b0f8143ea1596fc5cee93e1
FileChecksum: SHA1: 6c73c0ebb33144f5a5d357455a3e5f7685f9ac80
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls5.png
SPDXID: SPDXRef-859584665ab7324f38522f62eaa2ac71
FileChecksum: SHA1: 0159763bb48c631b7c58f23f7b5c63c3104a1db7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls6.png
SPDXID: SPDXRef-b60943a640b09008f87df25592668b62
FileChecksum: SHA1: 019927dc30de867643aa0c396a19e78c27219d7f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls8.png
SPDXID: SPDXRef-76d14de34d9f387f0c111b0731eba608
FileChecksum: SHA1: 184ad1a37f23169b9e4a7e7b31c7d1c09d26f5a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\ls9.png
SPDXID: SPDXRef-d14ba2017d5ba9fe329f7189ae033354
FileChecksum: SHA1: 51a119bc5d83003763311fd22b158fc492e69b2b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj0.png
SPDXID: SPDXRef-b9d2a158aa8349e9c1365e6a6aa94058
FileChecksum: SHA1: b4838109c762ad914e235689959f19fd1cf905f4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj1.png
SPDXID: SPDXRef-abdd9b1880da03fe1eb8f05baa23d363
FileChecksum: SHA1: 7362b15d0ac9206d70570c165b6b17821a96bd19
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj10.png
SPDXID: SPDXRef-5db8c730a332a2a7ed0da8a2ed1659cb
FileChecksum: SHA1: 8fc28057c61ef8fca35dfe58e56c690bd02361c3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj11.png
SPDXID: SPDXRef-4824fbf27a18ef08e5e892208c2e317f
FileChecksum: SHA1: 0f7a5b3d059b354896bbbfb32982ded4e0cc9ca8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj2.png
SPDXID: SPDXRef-a9132c9f24ee132c998f5b5f33a9a8e9
FileChecksum: SHA1: a0b7850f21bd41c83a6bc8d0cfe1097b015026d8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj21.png
SPDXID: SPDXRef-f29a28673591df47c0bfdbfb7dbd81fe
FileChecksum: SHA1: ad2ad22345186807fb26357b5d8e86700dde85ad
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj22.png
SPDXID: SPDXRef-d4823c9d84dc6a0d96b83819172ec6b7
FileChecksum: SHA1: f6e766b32b2bc9ec287fd290365bdddcabe4ebf4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj5.png
SPDXID: SPDXRef-29cdf2f9df56631d6b01b812a2a07d97
FileChecksum: SHA1: d9fc0fcbaa8dfca55e15d41332ac9e6fc5612c22
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj51.png
SPDXID: SPDXRef-404dc0138fc081bae34fc99cb7f1a59c
FileChecksum: SHA1: bf19813e8e03f7f4b39dbbf376e3c6214b60600c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj52.png
SPDXID: SPDXRef-eaa279a8921816029c199337d1cd55f2
FileChecksum: SHA1: 1fa2632041e99325574f033c48f4f2c33b0fdd94
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj6.png
SPDXID: SPDXRef-9c7c172107d35ca2e6c8062ef3bf4598
FileChecksum: SHA1: ba9328278a63c0c92c23ae69ecc315ce8694de03
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj60.png
SPDXID: SPDXRef-5eaf5c0869b0945a26d36af04c7e195e
FileChecksum: SHA1: 0cc61e235c0e6297730b4b252b96fee43d9fd204
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj601.png
SPDXID: SPDXRef-5e8153e318f584ab90a8c46d10a8d0d0
FileChecksum: SHA1: d19438698ee7ce11ac2490ce7b8529ee616b4a34
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj61.png
SPDXID: SPDXRef-e5d940c492d6793f6bb94ba74fa737a2
FileChecksum: SHA1: 08a875883d3851b96a434931399e02840b5c6d5a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj62.png
SPDXID: SPDXRef-b4c93ea3fdb85a1fa5059b2e39e3bb96
FileChecksum: SHA1: e801b019627ae05302bb206ff1f3d20417def48d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj63.png
SPDXID: SPDXRef-66010a3e3d8810fac4779fc397e7f22f
FileChecksum: SHA1: 2bb8a7468c769c6f0a31695572707a032c3d8edf
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj64.png
SPDXID: SPDXRef-77e87af9706802a335bd24ad98ca3a56
FileChecksum: SHA1: 5174e0a58cac5326ea016285c42b47e1905f6164
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj65.png
SPDXID: SPDXRef-f634f0d407978149b3935fa1c9282197
FileChecksum: SHA1: 80ba917d3647f3ff9a2eb187e4b3dc904125db60
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj66.png
SPDXID: SPDXRef-8e497f1bf2af6dfc48eaa492e552992c
FileChecksum: SHA1: 0295a0c037c018a0effcbb21f3bc7559d11ee8e6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj67.png
SPDXID: SPDXRef-60e783b765f8a07c7de6e8c973af2196
FileChecksum: SHA1: 3e60de329cc161cf21a52df1e5abeb4040bcc596
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj68.png
SPDXID: SPDXRef-2ea785cf181bbbd620b90110c9de4c30
FileChecksum: SHA1: ce848dff5abed1548792f117744f75cd308aa7dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj9.png
SPDXID: SPDXRef-7cf4976dc5b2b74f90a4b09050c2820f
FileChecksum: SHA1: 8d58453a73cf4c4ead7dd472bcd17faa138c1ceb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj90.png
SPDXID: SPDXRef-c8de114b8eb01d77bd0bbe4072684036
FileChecksum: SHA1: e2e451b7cc68b399bb32ea79a66ec174f0a034f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj91.png
SPDXID: SPDXRef-6de97d839d38bb34735cfbbe6cbdcd95
FileChecksum: SHA1: aef4d6b20b276e9dcf964e2e74867484f588f060
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj92.png
SPDXID: SPDXRef-c84bd1d9d53d898222cee7f712a6ef08
FileChecksum: SHA1: 69ac06a2635a1a6c8863db6fbf3185a50d0641e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj93.png
SPDXID: SPDXRef-e2acc113c473c58ce05ed562d0df189c
FileChecksum: SHA1: 071296b58406bf460585360496f4c121764654f1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj94.png
SPDXID: SPDXRef-4a7b7ac3fff8d80be23c9f2162547ed8
FileChecksum: SHA1: 7209a7198ed8bf6ace68d6998fa084d3e4832e0b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\obj95.png
SPDXID: SPDXRef-2f34943d34cb1e9c02523972ce7021ee
FileChecksum: SHA1: 8013634864848e3c410479b9810e694ef4acd427
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\open-new-tab.png
SPDXID: SPDXRef-e9d0213e59da70d2a50843c0b37f2af3
FileChecksum: SHA1: bce3312f5ea1ab618feb0c8ac566abab0799085f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\reorder-columns.png
SPDXID: SPDXRef-9b21f2471e050f4eef1f1cc9014adef0
FileChecksum: SHA1: a3ebfdd62534c0410a8e91acd761148660705ba6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\responsive-table.png
SPDXID: SPDXRef-ec0a088f4166e71e6bdd82f9990681c2
FileChecksum: SHA1: b3619df4d5b167b8a594058cd16644cfa5f9d22c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\update-columns.png
SPDXID: SPDXRef-af7b6f1248024525b8a9054ecb4cf91c
FileChecksum: SHA1: 1d74c9e849b4d252b4b414d0df5c5771ac4cd9bc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\update-filter-label.png
SPDXID: SPDXRef-d5ff7202a6da96f6cdbbe6cd93268ac7
FileChecksum: SHA1: 5ce21c6ff6f349d9e0f71fe5ed861fa5b4d1eca8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\value-desc-property.png
SPDXID: SPDXRef-10658c4e5520d1972811edc790dfd112
FileChecksum: SHA1: 0597b70e7d4b5cd3e3572fb156d1aa4533dc4d97
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\value-help-dipslay-type.png
SPDXID: SPDXRef-074eb76e9abb15949fb762ac141a569e
FileChecksum: SHA1: 8e928830b61bbb1d22ce0b3e3ec468c97c7fe520
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC-BY-4.0
FileCopyrightText: <text>2023-2025 SAP SE or an SAP affiliate company and btp-dev-guidance contributors</text>
FileName: ./tutorials\add-fiori-elements-uis\vscrfeapp.jpg
SPDXID: SPDXRef-c5c99624e21055dfd67c7f3815d9e3ca