summaryrefslogtreecommitdiffstats
path: root/ONAP_Information_Model/Vnf.uml
blob: 3d575807a515488a4bd6e653cbf7934d08b3f2be (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:OpenModel_Profile="http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xsi:schemaLocation="http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27 OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g">
  <uml:Package xmi:id="_xXjM8DOHEei5Af8DcjrhIQ" name="Vnf">
    <packagedElement xmi:type="uml:Package" xmi:id="_zPNSIDOHEei5Af8DcjrhIQ" name="Associations">
      <packagedElement xmi:type="uml:Association" xmi:id="_u3e7kDOVEeiHat9KcP8uWA" name="VnfdUsesVirtualComputeDesc" visibility="public" memberEnd="_u3gwwDOVEeiHat9KcP8uWA _u3j0EDOVEeiHat9KcP8uWA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_u3gJsDOVEeiHat9KcP8uWA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_u3gJsTOVEeiHat9KcP8uWA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_doQSMDQTEeixv_sLOod4lQ" annotatedElement="_u3e7kDOVEeiHat9KcP8uWA">
          <body>Defines descriptors of virtual compute resources to be used by the VNF.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_u3j0EDOVEeiHat9KcP8uWA" name="vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_u3e7kDOVEeiHat9KcP8uWA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_vRNCsDQPEeixv_sLOod4lQ" name="VnfdHasVdu" memberEnd="_vRv1QDQPEeixv_sLOod4lQ _vRy4kDQPEeixv_sLOod4lQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_vRsK4DQPEeixv_sLOod4lQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_vRtZADQPEeixv_sLOod4lQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_XD9P8DTdEeiwQ6KPLHcy4g" annotatedElement="_vRNCsDQPEeixv_sLOod4lQ">
          <body>References to Vdus that are part of this group.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_vRy4kDQPEeixv_sLOod4lQ" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_vRNCsDQPEeixv_sLOod4lQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_zxa4ADQvEeixv_sLOod4lQ" name="VnfdHasVnfDf" memberEnd="_zxa4AzQvEeixv_sLOod4lQ _zxbfEDQvEeixv_sLOod4lQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_zxa4ATQvEeixv_sLOod4lQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_zxa4AjQvEeixv_sLOod4lQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_zxbfEDQvEeixv_sLOod4lQ" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_zxa4ADQvEeixv_sLOod4lQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_LOOBADQtEeixv_sLOod4lQ" name="VnfdHasExtCpd" memberEnd="_LOOoEjQtEeixv_sLOod4lQ _LORrYDQtEeixv_sLOod4lQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_LOOoEDQtEeixv_sLOod4lQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_LOOoETQtEeixv_sLOod4lQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_eKV3UDQuEeixv_sLOod4lQ" annotatedElement="_LOOBADQtEeixv_sLOod4lQ">
          <body>Describes external interface(s) exposed by this VNF enabling connection with a VL.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_LOOoEjQtEeixv_sLOod4lQ" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_LOOBADQtEeixv_sLOod4lQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_TvbXoDQuEeixv_sLOod4lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Tvdz4DQuEeixv_sLOod4lQ" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_7QNV0DTUEeiwQ6KPLHcy4g" name="VnfdHasVnfIndicator" memberEnd="_7QN84jTUEeiwQ6KPLHcy4g _7QOj8DTUEeiwQ6KPLHcy4g">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_7QN84DTUEeiwQ6KPLHcy4g" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_7QN84TTUEeiwQ6KPLHcy4g" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_7QN84jTUEeiwQ6KPLHcy4g" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_7QNV0DTUEeiwQ6KPLHcy4g"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_nXtQsDkOEeiWMf5FLWfdLA" name="VnfdHasVSDesc" memberEnd="_nXwUATkOEeiWMf5FLWfdLA _nXywQjkOEeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_nXvs8DkOEeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_nXwUADkOEeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_nXywQjkOEeiWMf5FLWfdLA" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_nXtQsDkOEeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_j97TUDWeEei9Ia34RXjpEg" name="VduHasInternalVduCpd" memberEnd="_j9-9sDWeEei9Ia34RXjpEg _j-D2MDWeEei9Ia34RXjpEg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_j99vkDWeEei9Ia34RXjpEg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_j9-WoDWeEei9Ia34RXjpEg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_j-D2MDWeEei9Ia34RXjpEg" name="_vdu" type="_e5WnwDOREeiHat9KcP8uWA" association="_j97TUDWeEei9Ia34RXjpEg"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_343n0DabEei23_xWdimG9w" name="VduHasVCDesc" memberEnd="_345dADabEei23_xWdimG9w _346EEDabEei23_xWdimG9w">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_344O4DabEei23_xWdimG9w" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_344O4TabEei23_xWdimG9w" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_JibDADadEei23_xWdimG9w" annotatedElement="_343n0DabEei23_xWdimG9w">
          <body>Describes CPU, Memory and acceleration requirements of the Virtualisation Container realising this Vdu.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_346EEDabEei23_xWdimG9w" name="_vdu" type="_e5WnwDOREeiHat9KcP8uWA" association="_343n0DabEei23_xWdimG9w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_U0N80DacEei23_xWdimG9w" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_U1ERYDacEei23_xWdimG9w" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_uwCwMDadEei23_xWdimG9w" name="VduHasVSDesc" memberEnd="_uwFMcTadEei23_xWdimG9w _uwHosDadEei23_xWdimG9w">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_uwElYDadEei23_xWdimG9w" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_uwFMcDadEei23_xWdimG9w" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_m2_64DaeEei23_xWdimG9w" annotatedElement="_uwCwMDadEei23_xWdimG9w">
          <body>Describes storage requirements for a VirtualStorage instance attached to the virtualisation container created from virtualComputeDesc defined for this Vdu. support:  </body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_uwFMcTadEei23_xWdimG9w" name="_vdu" type="_e5WnwDOREeiHat9KcP8uWA" association="_uwCwMDadEei23_xWdimG9w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ehQ_ADaeEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ehV3gDaeEei23_xWdimG9w" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_MxzBsDagEei23_xWdimG9w" name="VduHasSwImageDesc" memberEnd="_MxzowjagEei23_xWdimG9w _Mx024DagEei23_xWdimG9w">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_MxzowDagEei23_xWdimG9w" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_MxzowTagEei23_xWdimG9w" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_e9J-4DagEei23_xWdimG9w" annotatedElement="_MxzBsDagEei23_xWdimG9w">
          <body>Describes the software image which is directly loaded on the virtualisation container realising this Vdu.&#xD;
&#xD;
NOTE: More software images can be attached to the virtualisation container using VirtualStorage resources.&#xD;
</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_Mx024DagEei23_xWdimG9w" name="_vdu" type="_e5WnwDOREeiHat9KcP8uWA" association="_MxzBsDagEei23_xWdimG9w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_b1oNQDagEei23_xWdimG9w" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_b1sesDagEei23_xWdimG9w" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_xRwPMDdyEeiIfPeSAqyGdQ" name="SwImageLoadedOnVS" memberEnd="_xRw2QjdyEeiIfPeSAqyGdQ _xR4LADdyEeiIfPeSAqyGdQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_xRw2QDdyEeiIfPeSAqyGdQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_xRw2QTdyEeiIfPeSAqyGdQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_xRw2QjdyEeiIfPeSAqyGdQ" name="swimagedesc" type="_J0Zx0DOSEeiHat9KcP8uWA" association="_xRwPMDdyEeiIfPeSAqyGdQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5xie8DdyEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5x6SYDdyEeiIfPeSAqyGdQ" value="1"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_xR4LADdyEeiIfPeSAqyGdQ" name="virtualstoragedesc" type="_K_9mADOSEeiHat9KcP8uWA" association="_xRwPMDdyEeiIfPeSAqyGdQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7UrFoDdyEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7U2r0DdyEeiIfPeSAqyGdQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_ufxV8DdVEeiIfPeSAqyGdQ" name="VnfExtCpdMapstoVduCpd" memberEnd="_uf0ZQDdVEeiIfPeSAqyGdQ _uf1nYDdVEeiIfPeSAqyGdQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ufzyMDdVEeiIfPeSAqyGdQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ufzyMTdVEeiIfPeSAqyGdQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_uf1nYDdVEeiIfPeSAqyGdQ" name="_vnfExtCpd" type="_AmzWYDQtEeixv_sLOod4lQ" association="_ufxV8DdVEeiIfPeSAqyGdQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_8yFlADdVEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_8yIBQDdVEeiIfPeSAqyGdQ" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_uogp4DgTEeiOYfGHew0BGg" name="VLProfileHasVLDescFlavour" memberEnd="_uohQ8jgTEeiOYfGHew0BGg _uok7UDgTEeiOYfGHew0BGg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_uohQ8DgTEeiOYfGHew0BGg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_uohQ8TgTEeiOYfGHew0BGg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_-6OOwDgcEeiOYfGHew0BGg" annotatedElement="_uogp4DgTEeiOYfGHew0BGg">
          <body>Identifies a flavour within a VnfVirtualLinkDesc.&#xD;
</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_uok7UDgTEeiOYfGHew0BGg" name="virtuallinkprofile" type="_0lvvQDgREeiOYfGHew0BGg" association="_uogp4DgTEeiOYfGHew0BGg"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_gt50cDm5EeiWMf5FLWfdLA" name="VduCpdHasVNIR" memberEnd="_guTdEjm5EeiWMf5FLWfdLA _guVSQTm5EeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_guTdEDm5EeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_guTdETm5EeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_guVSQTm5EeiWMf5FLWfdLA" name="_vducpd " type="_zOfv8DQVEeixv_sLOod4lQ" association="_gt50cDm5EeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_Y7f5ADnCEeiWMf5FLWfdLA" name="VnfDfHasAorAAGroup" memberEnd="_Y7jjYTnCEeiWMf5FLWfdLA _Y8jB4DnCEeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Y7i8UDnCEeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_Y7jjYDnCEeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_Y8jB4DnCEeiWMf5FLWfdLA" name="_vnfDf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_Y7f5ADnCEeiWMf5FLWfdLA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_p4HyMDnCEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_p4YQ4DnCEeiWMf5FLWfdLA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_OCb6MDnBEeiWMf5FLWfdLA" name="VnfDfHasIL" memberEnd="_OCdvYTnBEeiWMf5FLWfdLA _OCfkkTnBEeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_OCdIUDnBEeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_OCdvYDnBEeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_OCfkkTnBEeiWMf5FLWfdLA" name="_vnfDf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_OCb6MDnBEeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_UZOyQDnDEeiWMf5FLWfdLA" name="VnfDfHasScalingAspect" memberEnd="_UZQncjnDEeiWMf5FLWfdLA _UZScoTnDEeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_UZQncDnDEeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_UZQncTnDEeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_UZScoTnDEeiWMf5FLWfdLA" name="_vnfDf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_UZOyQDnDEeiWMf5FLWfdLA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_lrVMMDnDEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_lrlD0DnDEeiWMf5FLWfdLA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_KN7jQDnAEeiWMf5FLWfdLA" name="VnfDfHasVLProfile" memberEnd="_KN9YcTnAEeiWMf5FLWfdLA _KN_NoTnAEeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_KN8xYDnAEeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_KN9YcDnAEeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_BtEDcDz3Eeiuk5pWzMOpfA" annotatedElement="_KN7jQDnAEeiWMf5FLWfdLA">
          <body>Defines the internal VLD along with additional data which is used in this DF.&#xD;
&#xD;
NOTE 1: This allows for different VNF internal topologies between DFs.&#xD;
&#xD;
NOTE 2: virtualLinkProfile needs to be provided for all VLs that the CPs of the VDUs in the VDU profiles connect to.&#xD;
</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_KN_NoTnAEeiWMf5FLWfdLA" name="_vnfDf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_KN7jQDnAEeiWMf5FLWfdLA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ghCY8DnAEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_giYcwDnAEeiWMf5FLWfdLA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_hzDMsDm7EeiWMf5FLWfdLA" name="VnfExtCdpHasVNIR" memberEnd="_hzG3ETm7EeiWMf5FLWfdLA _hz7WcDm7EeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_hzFo8Dm7EeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_hzG3EDm7EeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hz7WcDm7EeiWMf5FLWfdLA" name="_vnfExtCpd " type="_AmzWYDQtEeixv_sLOod4lQ" association="_hzDMsDm7EeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_PJjEgDnHEeiWMf5FLWfdLA" name="ILHasVduLevel" memberEnd="_PJk5sjnHEeiWMf5FLWfdLA _PJmu4jnHEeiWMf5FLWfdLA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_PJk5sDnHEeiWMf5FLWfdLA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_PJk5sTnHEeiWMf5FLWfdLA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_PJmu4jnHEeiWMf5FLWfdLA" name="_instantiationLevel" type="_6C8F4DnAEeiWMf5FLWfdLA" association="_PJjEgDnHEeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_8qDIUD5xEeijbdkIlrq2uQ" name="VnfDfHasVduProfile" memberEnd="_8qGysD5xEeijbdkIlrq2uQ _8qIn4T5xEeijbdkIlrq2uQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_8qFkkD5xEeijbdkIlrq2uQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_8qGLoD5xEeijbdkIlrq2uQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_8qIn4T5xEeijbdkIlrq2uQ" name="vnfdf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_8qDIUD5xEeijbdkIlrq2uQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Dd8eAD5yEeijbdkIlrq2uQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Dd-6QD5yEeijbdkIlrq2uQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_HAfqUF-FEeiaLPXj8My4aQ" name="VnfHasVnfc" memberEnd="_HAitoF-FEeiaLPXj8My4aQ _HAj7wF-FEeiaLPXj8My4aQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_HAiGkF-FEeiaLPXj8My4aQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_HAiGkV-FEeiaLPXj8My4aQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_HAj7wF-FEeiaLPXj8My4aQ" name="vnfinstance" type="_jH_PgF3PEeiwL5tPgFMcjQ" association="_HAfqUF-FEeiaLPXj8My4aQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_OXqPsF-GEeiaLPXj8My4aQ" name="VnfcHasCp" memberEnd="_OXq2wV-GEeiaLPXj8My4aQ _OX0nwF-GEeiaLPXj8My4aQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_OXqPsV-GEeiaLPXj8My4aQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_OXq2wF-GEeiaLPXj8My4aQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_OX0nwF-GEeiaLPXj8My4aQ" name="nfc (vnfcinstance)" type="_OpdBwF9vEeiaLPXj8My4aQ" association="_OXqPsF-GEeiaLPXj8My4aQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_PG0wgGkCEeip9umi7zNprw" name="VnfDeployedUsingVnfd" memberEnd="_PG3MwGkCEeip9umi7zNprw _PG5B8WkCEeip9umi7zNprw">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_PG2lsGkCEeip9umi7zNprw" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_PG2lsWkCEeip9umi7zNprw" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_PG5B8WkCEeip9umi7zNprw" name="vnfinstance" type="_jH_PgF3PEeiwL5tPgFMcjQ" association="_PG0wgGkCEeip9umi7zNprw">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bLRZ0GkCEeip9umi7zNprw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bLdAAGkCEeip9umi7zNprw" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_tY4JkGmNEeiIM-XECFR2Pw" name="VnfcDeployedUsingVdu" memberEnd="_tZ9usGmNEeiIM-XECFR2Pw _taTF4GmNEeiIM-XECFR2Pw">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_tZueIGmNEeiIM-XECFR2Pw" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_tZvFMGmNEeiIM-XECFR2Pw" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_taTF4GmNEeiIM-XECFR2Pw" name="vnfc (vnfcinstance)" type="_OpdBwF9vEeiaLPXj8My4aQ" association="_tY4JkGmNEeiIM-XECFR2Pw">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_86Qz0GmNEeiIM-XECFR2Pw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_86doIGmNEeiIM-XECFR2Pw" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_inMfAH7eEei4v5WRHqfM1Q" name="VnfInstanceHasVnfVirtualLink" memberEnd="_inPiUH7eEei4v5WRHqfM1Q _inQwcn7eEei4v5WRHqfM1Q">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_inOUMH7eEei4v5WRHqfM1Q" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_inOUMX7eEei4v5WRHqfM1Q" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_inQwcn7eEei4v5WRHqfM1Q" name="vnfinstance" type="_jH_PgF3PEeiwL5tPgFMcjQ" association="_inMfAH7eEei4v5WRHqfM1Q">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ueigcH7eEei4v5WRHqfM1Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ue5s0H7eEei4v5WRHqfM1Q" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_DqruAD24Eeiu6I5JfRTxxQ" name="VnfProfileReferencesVnfDf">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_DqtjMD24Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_DqtjMT24Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <memberEnd xmi:type="uml:Property" href="Ns.uml#_DquKQD24Eeiu6I5JfRTxxQ"/>
        <memberEnd xmi:type="uml:Property" href="#_Dqv_cT24Eeiu6I5JfRTxxQ"/>
        <ownedEnd xmi:type="uml:Property" xmi:id="_Dqv_cT24Eeiu6I5JfRTxxQ" name="_vnfProfile" association="_DqruAD24Eeiu6I5JfRTxxQ">
          <type xmi:type="uml:Class" href="Ns.uml#_45XE4DzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_QYNwkD24Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_QYgrgD24Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_zlG0wD27Eeiu6I5JfRTxxQ" name="VnfProfileReferencesVnfd">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_zlIC4D27Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_zlIC4T27Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <memberEnd xmi:type="uml:Property" href="Ns.uml#_zlIC4j27Eeiu6I5JfRTxxQ"/>
        <memberEnd xmi:type="uml:Property" href="#_zlJ4ET27Eeiu6I5JfRTxxQ"/>
        <ownedEnd xmi:type="uml:Property" xmi:id="_zlJ4ET27Eeiu6I5JfRTxxQ" name="_vnfProfile" association="_zlG0wD27Eeiu6I5JfRTxxQ">
          <type xmi:type="uml:Class" href="Ns.uml#_45XE4DzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_AD8UAD28Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_AEPO8D28Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_-JxnoCovEemZ-7haRVvogQ" name="VnfdHasSwImageDesc" memberEnd="_-KR98CovEemZ-7haRVvogQ _-KYroCovEemZ-7haRVvogQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_-KNFcCovEemZ-7haRVvogQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_-KOTkCovEemZ-7haRVvogQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_-KYroCovEemZ-7haRVvogQ" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_-JxnoCovEemZ-7haRVvogQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_iGbbMCo7EemS0_wZSU3sbA" name="SwImageDescHasSwImage" memberEnd="_iGrS0Co7EemS0_wZSU3sbA _iGwLUCo7EemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_iGnocCo7EemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_iGoPgCo7EemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_iGwLUCo7EemS0_wZSU3sbA" name="_swImageDesc" type="_J0Zx0DOSEeiHat9KcP8uWA" association="_iGbbMCo7EemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_gmOFUCo-EemS0_wZSU3sbA" name="VCDHasLNRequirements" memberEnd="_gmSWwCo-EemS0_wZSU3sbA _gmVaESo-EemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_gmRIoCo-EemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_gmRvsCo-EemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_gmVaESo-EemS0_wZSU3sbA" name="_virtualComputeDesc" type="_-gDvwDOREeiHat9KcP8uWA" association="_gmOFUCo-EemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_245kgCr_EemS0_wZSU3sbA" name="VnfdHasInternalVnfVLDesc" memberEnd="_248n0Cr_EemS0_wZSU3sbA _24-dASr_EemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_248AwCr_EemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_248AwSr_EemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_24-dASr_EemS0_wZSU3sbA" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_245kgCr_EemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_GWbNACsBEemS0_wZSU3sbA" name="VirtualLinkProfileHasDescId" memberEnd="_GWe3YSsBEemS0_wZSU3sbA _GWh6sCsBEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_GWeQUCsBEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_GWe3YCsBEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_YvyxACsBEemS0_wZSU3sbA" annotatedElement="_GWbNACsBEemS0_wZSU3sbA">
          <body>Uniquely references a VLD.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_GWh6sCsBEemS0_wZSU3sbA" name="_virtualLinkProfile" type="_0lvvQDgREeiOYfGHew0BGg" association="_GWbNACsBEemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_6rs10CsBEemS0_wZSU3sbA" name="VduCpdHasInternvalVnfVLDesc" memberEnd="_6rvSESsBEemS0_wZSU3sbA _6rxuUCsBEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_6rurACsBEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_6rvSECsBEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_6rxuUCsBEemS0_wZSU3sbA" name="_vduCpd " type="_zOfv8DQVEeixv_sLOod4lQ" association="_6rs10CsBEemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_qCk1gCsDEemS0_wZSU3sbA" name="VnfVLDescHasVLDescFlavour" memberEnd="_qCsKQisDEemS0_wZSU3sbA _qCumgSsDEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_qCsKQCsDEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_qCsKQSsDEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_qCumgSsDEemS0_wZSU3sbA" name="_vnfVirtualLinkDesc" type="_-5-w8Cr9EemS0_wZSU3sbA" association="_qCk1gCsDEemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_lZYx8CsFEemS0_wZSU3sbA" name="VnfExtCpdHasVLDesc" memberEnd="_lZbOMCsFEemS0_wZSU3sbA _lZ69cCsFEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_lZanICsFEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_lZanISsFEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_3ghWcCsFEemS0_wZSU3sbA" annotatedElement="_lZYx8CsFEemS0_wZSU3sbA">
          <body>Reference to the internal Virtual Link Descriptor (VLD) to which CPs instantiated from this external CP Descriptor (CPD) connect.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_lZ69cCsFEemS0_wZSU3sbA" name="_vnfExtCpd" type="_AmzWYDQtEeixv_sLOod4lQ" association="_lZYx8CsFEemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_6rsAACsHEemS0_wZSU3sbA" name="VduProfileReferencesVdu" memberEnd="_6rucQCsHEemS0_wZSU3sbA _6rw4gCsHEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_6rt1MCsHEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_6rt1MSsHEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_6rw4gCsHEemS0_wZSU3sbA" name="_vduProfile" type="_ISONYDOSEeiHat9KcP8uWA" association="_6rsAACsHEemS0_wZSU3sbA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Ul2b8CsIEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UmDQQCsIEemS0_wZSU3sbA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_ZqPJkCsNEemS0_wZSU3sbA" name="VnfDfHasVnfIndicator" memberEnd="_ZqRl0isNEemS0_wZSU3sbA _ZqUCESsNEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ZqRl0CsNEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ZqRl0SsNEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_ZqUCESsNEemS0_wZSU3sbA" name="_vnfDf" type="_p0UVsDQvEeixv_sLOod4lQ" association="_ZqPJkCsNEemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_ix6i8CsREemS0_wZSU3sbA" name="VlProfileHasAffOrAntiAffGroup" memberEnd="_ix8YIisREemS0_wZSU3sbA _ix-0YCsREemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ix8YICsREemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ix8YISsREemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_ix-0YCsREemS0_wZSU3sbA" name="virtuallinkprofile" type="_0lvvQDgREeiOYfGHew0BGg" association="_ix6i8CsREemS0_wZSU3sbA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_AcumACsSEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Ac5lICsSEemS0_wZSU3sbA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_lIaH4CvPEemS0_wZSU3sbA" name="VduLevelHasVdu" memberEnd="_lIdLMivPEemS0_wZSU3sbA _lIfncCvPEemS0_wZSU3sbA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_lIdLMCvPEemS0_wZSU3sbA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_lIdLMSvPEemS0_wZSU3sbA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_lIfncCvPEemS0_wZSU3sbA" name="vdulevel" type="_DZsyMDnHEeiWMf5FLWfdLA" association="_lIaH4CvPEemS0_wZSU3sbA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_wHic8ET_EemWRYeHGX88Yw" name="VnfdDefinesSecurityGroupRule" memberEnd="_wHuqMET_EemWRYeHGX88Yw _wHxGcET_EemWRYeHGX88Yw">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_wHq_0ET_EemWRYeHGX88Yw" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_wHrm4ET_EemWRYeHGX88Yw" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_wHxGcET_EemWRYeHGX88Yw" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_wHic8ET_EemWRYeHGX88Yw"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_3CXdADwrEemSHu2qGsweWg" name="SeserviceDescCompositeComprisedOfResrouceDesc" memberEnd="_3CZ5QDwrEemSHu2qGsweWg _4VCl0DwrEemSHu2qGsweWg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_3CZSMDwrEemSHu2qGsweWg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_3CZSMTwrEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_3CZ5QDwrEemSHu2qGsweWg" name="resourcedesc" aggregation="shared" association="_3CXdADwrEemSHu2qGsweWg">
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Dfz1IDwsEemSHu2qGsweWg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DgDFsDwsEemSHu2qGsweWg" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_4VCl0DwrEemSHu2qGsweWg" name="servicedesccomposite" association="_3CXdADwrEemSHu2qGsweWg">
          <type xmi:type="uml:Class" href="Service.uml#_BQaDwJpZEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_E67vUDwsEemSHu2qGsweWg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_E7Lm8DwsEemSHu2qGsweWg" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_L7Y6UDwsEemSHu2qGsweWg" name="ServiceDescAtomicRealizedAs" memberEnd="_L7aIcTwsEemSHu2qGsweWg _L7b9oDwsEemSHu2qGsweWg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_L7ZhYDwsEemSHu2qGsweWg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_L7aIcDwsEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_L7aIcTwsEemSHu2qGsweWg" name="resourcedesc" aggregation="shared" association="_L7Y6UDwsEemSHu2qGsweWg">
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XGEDADwsEemSHu2qGsweWg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XGIUcDwsEemSHu2qGsweWg" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_L7b9oDwsEemSHu2qGsweWg" name="servicedescatomic" association="_L7Y6UDwsEemSHu2qGsweWg">
          <type xmi:type="uml:Class" href="Service.uml#_iQkugJpYEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YFLWoDwsEemSHu2qGsweWg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YFPBADwsEemSHu2qGsweWg" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_5zfvQEdMEemb9YiEz89e4g" name="VNIRHasLNR" memberEnd="_5zqHUEdMEemb9YiEz89e4g _5zvm4EdMEemb9YiEz89e4g">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_5zmc8EdMEemb9YiEz89e4g" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_5zmc8UdMEemb9YiEz89e4g" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_5zvm4EdMEemb9YiEz89e4g" name="_virtualNetworkInterfaceRequirements" type="_8BUXwDm4EeiWMf5FLWfdLA" association="_5zfvQEdMEemb9YiEz89e4g"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_42UGUL-SEemqDYUsJ60dmQ" name="AnfdRunsOnSharableNFDesc" memberEnd="_42Zl4L-SEemqDYUsJ60dmQ _42d3UL-SEemqDYUsJ60dmQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_42YXwL-SEemqDYUsJ60dmQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_42Y-0L-SEemqDYUsJ60dmQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_o0w0wEbKEeq6lZJfEw6xcg" annotatedElement="_42UGUL-SEemqDYUsJ60dmQ">
          <body>An Anfd (Allotted Network Function Descriptor) is designed to  run on top of some sharable NetworkFunction.   It si therefore related to the NfD at design time.&#xD;
&#xD;
The NetworkFunctionDesc can be designed to have some number (zero to many).   </body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_42Zl4L-SEemqDYUsJ60dmQ" name="networkfunctiondesc" association="_42UGUL-SEemqDYUsJ60dmQ">
          <type xmi:type="uml:Class" href="Nf.uml#_O385oJssEeiPBvbfaqSLYg"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_42d3UL-SEemqDYUsJ60dmQ" name="anfd" type="_xVaLUJs3EeiPBvbfaqSLYg" aggregation="composite" association="_42UGUL-SEemqDYUsJ60dmQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YN1i0L-TEemqDYUsJ60dmQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YOecAL-TEemqDYUsJ60dmQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_nWl_wL-VEemqDYUsJ60dmQ" name="AnfInstanceRunsOnSharableNFInstance" memberEnd="_nWnN4b-VEemqDYUsJ60dmQ _nWocAL-VEemqDYUsJ60dmQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_nWmm0L-VEemqDYUsJ60dmQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_nWnN4L-VEemqDYUsJ60dmQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_9aSHQEbKEeq6lZJfEw6xcg" annotatedElement="_nWl_wL-VEemqDYUsJ60dmQ">
          <body>An AnfInstance (Allotted Network Function Instance) runs on top of some sharable NetworkFunction.   The NetworkFunctionInstance can have some number (zero to many) of AnfInstances running on it.   </body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_nWnN4b-VEemqDYUsJ60dmQ" name="networkfunction" association="_nWl_wL-VEemqDYUsJ60dmQ">
          <type xmi:type="uml:Class" href="Nf.uml#_VtzSoESyEeiVGPeZpaYNtQ"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_nWocAL-VEemqDYUsJ60dmQ" name="anfinstance" type="_jCjpYE_kEemeaek-m0jmOA" aggregation="composite" association="_nWl_wL-VEemqDYUsJ60dmQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9w1YML-VEemqDYUsJ60dmQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9xLWcL-VEemqDYUsJ60dmQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_huWdUNDjEeqta_vMxqAxxw" name="VnfdhasVipCpd" memberEnd="_huauwNDjEeqta_vMxqAxxw _huhcctDjEeqta_vMxqAxxw">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_huaHsNDjEeqta_vMxqAxxw" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_huaHsdDjEeqta_vMxqAxxw" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_huhcctDjEeqta_vMxqAxxw" name="vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_huWdUNDjEeqta_vMxqAxxw"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_OybPkNgaEeq7hYQNMy9zpg" name="VnfDfHasSupportedVnfInterface" memberEnd="_OycdsNgaEeq7hYQNMy9zpg _OylAkNgaEeq7hYQNMy9zpg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Oyb2oNgaEeq7hYQNMy9zpg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_Oyb2odgaEeq7hYQNMy9zpg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_OycdsNgaEeq7hYQNMy9zpg" name="vnfdf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_OybPkNgaEeq7hYQNMy9zpg"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_sz4cgNtFEeqc48iFXy8U7A" name="SwImageDescHasCheckSumData" memberEnd="_sz8G4NtFEeqc48iFXy8U7A _sz_xQttFEeqc48iFXy8U7A">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_sz64wNtFEeqc48iFXy8U7A" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_sz64wdtFEeqc48iFXy8U7A" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_sz_xQttFEeqc48iFXy8U7A" name="swimagedesc" type="_J0Zx0DOSEeiHat9KcP8uWA" association="_sz4cgNtFEeqc48iFXy8U7A"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_rDlokPhaEeqImeFkB-PnTA" name="VnfdHasVnfPackageChangeInfo" memberEnd="_rDsWQPhaEeqImeFkB-PnTA _rD1gMvhaEeqImeFkB-PnTA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_rDrIIPhaEeqImeFkB-PnTA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_rDrvMPhaEeqImeFkB-PnTA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_rD1gMvhaEeqImeFkB-PnTA" name="vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_rDlokPhaEeqImeFkB-PnTA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_HSwssPheEeqImeFkB-PnTA" name="VnfdHasLcmOpCoordination" memberEnd="_HSx60vheEeqImeFkB-PnTA _HS2zUvheEeqImeFkB-PnTA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_HSx60PheEeqImeFkB-PnTA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_HSx60fheEeqImeFkB-PnTA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_HS2zUvheEeqImeFkB-PnTA" name="vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_HSwssPheEeqImeFkB-PnTA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_ovqzUA2REeuBquWJMTL0qg" name="VnfdHasOsContainerDesc" memberEnd="_ovvr0A2REeuBquWJMTL0qg _ov2Zgg2REeuBquWJMTL0qg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ovudsA2REeuBquWJMTL0qg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ovvEwA2REeuBquWJMTL0qg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_ov2Zgg2REeuBquWJMTL0qg" name="vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_ovqzUA2REeuBquWJMTL0qg"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_TWnncA8YEeuBquWJMTL0qg" name="VnfDfHasMciopProfile" memberEnd="_TWqDsg8YEeuBquWJMTL0qg _TWtuEA8YEeuBquWJMTL0qg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_TWqDsA8YEeuBquWJMTL0qg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_TWqDsQ8YEeuBquWJMTL0qg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_TWtuEA8YEeuBquWJMTL0qg" name="vnfdf " type="_p0UVsDQvEeixv_sLOod4lQ" association="_TWnncA8YEeuBquWJMTL0qg"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_66psQB0XEeuefrxxkEb1lQ" name="VduRefOsContainerDesc" visibility="public" memberEnd="_66t9sB0XEeuefrxxkEb1lQ _66zdQB0XEeuefrxxkEb1lQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_66svkB0XEeuefrxxkEb1lQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_66tWoB0XEeuefrxxkEb1lQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_66zdQB0XEeuefrxxkEb1lQ" name="vdu" type="_e5WnwDOREeiHat9KcP8uWA" association="_66psQB0XEeuefrxxkEb1lQ"/>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_zPN5MDOHEei5Af8DcjrhIQ" name="Diagrams" URI="">
      <ownedComment xmi:type="uml:Comment" xmi:id="_bphG0DTSEeiwQ6KPLHcy4g" annotatedElement="_zPN5MDOHEei5Af8DcjrhIQ">
        <body>Describes the associated elements of a VNFD for a certain purpose during VNF lifecycle management.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_gY6a0DgXEeiOYfGHew0BGg">
        <body>A few quick observations&#xD;
1.  Using integer for number. Jessie: Created a primitive called Number which is a superset of integer and real.&#xD;
2.  created a datatype called enum. Deleted enum. Created &quot;enums&quot; where needed.&#xD;
3.   Seems like we are just using ETSI (beyound what we have in the works). Jessie: It appears that way.&#xD;
4.   Is monitoring param a class or a data type?  Jessie: It is a datatype.  Due to it's relationship to event, maybe a class??&#xD;
5.  Class versus datatype??</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_FYOMsEKAEeiwbqJBYHKltg">
        <annotatedElement xmi:type="uml:Class" href="Service.uml#_7SrB0D0VEeiWMf5FLWfdLA"/>
        <body>ResourceDesc???</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_ZbAZAJWXEeiBQt0DCQoFTw">
        <body>&#xD;
.&#xD;
can protocol be enumerated? - yes.  Values?&#xD;
&#xD;
Change addrestype to enumeration&#xD;
.&#xD;
Change L2addressData and l3addressData to 0..1 given &quot;only present....&quot; definition&#xD;
</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_oNwz8JWdEeiBQt0DCQoFTw">
        <body>orchestration Status - Pending, Created, Active... - Christina will query. &#xD;
.&#xD;
onboardedVnfPkgInfoId - need class for VnfPkg?   Yes - probably need more discussion - tied to vnf model and internal model.   Vnf Instance related to vnf descriptor or onboarding pkg descriptor</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_YxDD0JdJEei-sOl6ywWHlg">
        <body>Will not try to push this out into R3 - save for R4</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_HdKzwLavEeiWgvNHCpdNlg">
        <body>ONAP has a VirtualLinkDesc, not NetworkLink or LinkDesc&#xD;
&#xD;
This will probably need to move to common</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_J2WLsL_xEeisMMIUeH4UGw">
        <body>Attributes in violet - not necessary in Infomodell - can be retrieved from Vnfd.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_qrs4IL_xEeisMMIUeH4UGw">
        <body>Attributes in beige - added or changed</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_IB3jIL-WEemqDYUsJ60dmQ">
        <body>AnfInstanceRunsOnSharableNfInstance represents the &quot;ProvidedBy&quot;.&#xD;
&#xD;
The Uses relationship is covered by the service instance expressing the sharable infrasturcture capability which has a relationship to the sharable resource. The ANF instance also has a relationship to the same sharable resource.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="__gtZIMKwEemUeulSIk5Pkg">
        <body>- Pnfs cannot run on a Vnf or Anf&#xD;
&#xD;
- Pnfs cannot run on Pnfs, etc.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_cbI10B0XEeuefrxxkEb1lQ">
        <body>Only one of OsContainerDesc or VirtualComputeDesc per VDU
</body>
      </ownedComment>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_zPN5MTOHEei5Af8DcjrhIQ" name="Interfaces"/>
    <packagedElement xmi:type="uml:Package" xmi:id="_zPN5MjOHEei5Af8DcjrhIQ" name="ObjectClasses">
      <packagedElement xmi:type="uml:Class" xmi:id="_aaEZADOREeiHat9KcP8uWA" name="Vnfd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_g6pCsDOUEeiHat9KcP8uWA" annotatedElement="_aaEZADOREeiHat9KcP8uWA">
          <body>A Vnfd, or VNF Descriptor, is template which describes a VNF in terms of deployment and operational behaviour requirements. It also contains connectivity, interface and virtualised resource requirements.&#xD;
&#xD;
</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_JDHAgJpYEeidy9iGT_F5-w">
          <general xmi:type="uml:Class" href="Nf.uml#_O385oJssEeiPBvbfaqSLYg"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qFisADOUEeiHat9KcP8uWA" name="vnfdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_8UkBMDOUEeiHat9KcP8uWA" annotatedElement="_qFisADOUEeiHat9KcP8uWA">
            <body>Identifier of this VNFD information element. This attribute shall be globally unique.&#xD;
&#xD;
NOTE: The VNFD Identifier shall be used as the unique identifier of the VNF Package that contains this VNFD.&#xD;
Any modification of the content of the VNFD or the VNF Package shall result in a new VNFD Identifier.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Sz6jIDOVEeiHat9KcP8uWA" name="vnfProvider">
          <ownedComment xmi:type="uml:Comment" xmi:id="_a3R8oDOVEeiHat9KcP8uWA" annotatedElement="_Sz6jIDOVEeiHat9KcP8uWA">
            <body>Provider of the VNF and of the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_hUYi8DOVEeiHat9KcP8uWA" name="vnfProductName">
          <ownedComment xmi:type="uml:Comment" xmi:id="__8VHMDOWEeiHat9KcP8uWA" annotatedElement="_hUYi8DOVEeiHat9KcP8uWA">
            <body>Name to identify the VNF Product. Invariant for the VNF Product lifetime.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Psi3oDOXEeiHat9KcP8uWA" name="vnfSoftwareVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gdAnUEcjEei7eo5RdnNiBQ" annotatedElement="_Psi3oDOXEeiHat9KcP8uWA">
            <body>Software version of the VNF. This is changed when there is any change to the software that is included in the VNF Package.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Txwn0DQLEeixv_sLOod4lQ" name="vnfdVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_bI9e4DQLEeixv_sLOod4lQ" annotatedElement="_Txwn0DQLEeixv_sLOod4lQ">
            <body>Identifies the version of the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_d9nX0DQLEeixv_sLOod4lQ" name="vnfProductInfoName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_lY1zQDQLEeixv_sLOod4lQ" annotatedElement="_d9nX0DQLEeixv_sLOod4lQ">
            <body>Human readable name for the VNF Product. Can change during the VNF Product lifetime.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hIKoQDQLEeixv_sLOod4lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hIRV8DQLEeixv_sLOod4lQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nVSR0DQLEeixv_sLOod4lQ" name="vnfProductInfoDescription">
          <ownedComment xmi:type="uml:Comment" xmi:id="_uK6F0DQLEeixv_sLOod4lQ" annotatedElement="_nVSR0DQLEeixv_sLOod4lQ">
            <body>Human readable description of the VNF Product. Can change during the VNF Product lifetime.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_wnmxwDQLEeixv_sLOod4lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_wnp1EDQLEeixv_sLOod4lQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zS9kwDQLEeixv_sLOod4lQ" name="vnfmInfo">
          <ownedComment xmi:type="uml:Comment" xmi:id="_30VeMDQLEeixv_sLOod4lQ" annotatedElement="_zS9kwDQLEeixv_sLOod4lQ">
            <body>Identifies VNFM(s) compatible with the VNF described in this version of the VNFD. Use the name of micro-service of the vnfm drive. For vendor specific VNFM, the value composes of &quot;vendorname&quot; and &quot;vnfmdriver&quot;, e.g. &quot;mycompanyvnfmdriver&quot;; for generic VNFM, the value is &quot;gvnfmdriver&quot;.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5i-xUDQLEeixv_sLOod4lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5jCbsDQLEeixv_sLOod4lQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-WAbcDQLEeixv_sLOod4lQ" name="localizationLanguage">
          <ownedComment xmi:type="uml:Comment" xmi:id="_FHUXMDQMEeixv_sLOod4lQ" annotatedElement="_-WAbcDQLEeixv_sLOod4lQ">
            <body>Information about localization languages of the VNF (includes e.g. strings in the VNFD). Refer to ISO936 https://www.iso.org/iso-639-language-codes.html&#xD;
&#xD;
NOTE: This allows to provide one or more localization languages to support selecting a specific localization language at VNF instantiation time.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_CxZosDQMEeixv_sLOod4lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_CxfIQDQMEeixv_sLOod4lQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IW__QDQMEeixv_sLOod4lQ" name="defaultLocalizationLanguage">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PQ2zADQMEeixv_sLOod4lQ" annotatedElement="_IW__QDQMEeixv_sLOod4lQ">
            <body>Information about localization languages of the VNF (includes e.g. strings in the VNFD). Refer to ISO936 https://www.iso.org/iso-639-language-codes.html&#xD;
&#xD;
NOTE: This allows to provide one or more localization languages to support selecting a specific localization language at VNF instantiation time.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MpK_EDQMEeixv_sLOod4lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_MpOpcDQMEeixv_sLOod4lQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vRv1QDQPEeixv_sLOod4lQ" name="vdu" type="_e5WnwDOREeiHat9KcP8uWA" aggregation="composite" association="_vRNCsDQPEeixv_sLOod4lQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qB96sDkSEeiWMf5FLWfdLA" annotatedElement="_vRv1QDQPEeixv_sLOod4lQ">
            <body>Virtualisation Deployment Unit.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_luC08DQQEeixv_sLOod4lQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_luF4QDQQEeixv_sLOod4lQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_u3gwwDOVEeiHat9KcP8uWA" name="virtualComputeDesc" type="_-gDvwDOREeiHat9KcP8uWA" aggregation="shared" association="_u3e7kDOVEeiHat9KcP8uWA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ttLoMDkSEeiWMf5FLWfdLA" annotatedElement="_u3gwwDOVEeiHat9KcP8uWA">
            <body>Defines descriptors of virtual compute resources to be used by the VNF when each of the VNFC instances of the VNF is intended to be deployed in a single VM.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7n6hIDOVEeiHat9KcP8uWA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7n89YDOVEeiHat9KcP8uWA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nXwUATkOEeiWMf5FLWfdLA" name="virtualStorageDesc" type="_K_9mADOSEeiHat9KcP8uWA" aggregation="shared" association="_nXtQsDkOEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xcytgDkSEeiWMf5FLWfdLA" annotatedElement="_nXwUATkOEeiWMf5FLWfdLA">
            <body>Defines descriptors of virtual storage resources to be used by the VNF.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nXywQDkOEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nXywQTkOEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ovvr0A2REeuBquWJMTL0qg" name="osContainerDesc" type="_SYZyIFBHEeu9q4B_TIiAOQ" aggregation="composite" association="_ovqzUA2REeuBquWJMTL0qg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_OazPIATPEeuUzLXQ51gGgw">
            <body>Defines descriptors of container compute resources to be used by the VNF when the VDUs of the VNF are realized by a set of OS Containers sharing the same host and same networking namespace.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ov2ZgA2REeuBquWJMTL0qg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ov2ZgQ2REeuBquWJMTL0qg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-KR98CovEemZ-7haRVvogQ" name="swImageDesc" type="_J0Zx0DOSEeiHat9KcP8uWA" aggregation="composite" association="_-JxnoCovEemZ-7haRVvogQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_y8UbQCowEemZ-7haRVvogQ" annotatedElement="_-KR98CovEemZ-7haRVvogQ">
            <body>Defines descriptors of software images to be used by the VNF.&#xD;
NOTE:   This shall be used to describe both the software image loaded on the virtualization container used to realize a VDU and the software images to be stored on VirtualStorage resources (e.g., volumes) attached to a virtualization container.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-KW2cCovEemZ-7haRVvogQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-KYEkCovEemZ-7haRVvogQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_248n0Cr_EemS0_wZSU3sbA" name="intVirtualLinkDesc" type="_-5-w8Cr9EemS0_wZSU3sbA" association="_245kgCr_EemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iYkekCsAEemS0_wZSU3sbA" annotatedElement="_248n0Cr_EemS0_wZSU3sbA">
            <body>Represents the type of network connectivity mandated by the VNF provider between two or more CPs which includes at least one internal CP.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_24918Cr_EemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_24-dACr_EemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wHuqMET_EemWRYeHGX88Yw" name="securityGroupRule" type="_pQg3kET7EemWRYeHGX88Yw" association="_wHic8ET_EemWRYeHGX88Yw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MfuagEUAEemWRYeHGX88Yw" annotatedElement="_wHuqMET_EemWRYeHGX88Yw">
            <body>Defines security group rules to be used by the VNF.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_wHwfYET_EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_wHwfYUT_EemWRYeHGX88Yw" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_LORrYDQtEeixv_sLOod4lQ" name="vnfExtCpd" type="_AmzWYDQtEeixv_sLOod4lQ" aggregation="composite" association="_LOOBADQtEeixv_sLOod4lQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_78tpADkSEeiWMf5FLWfdLA" annotatedElement="_LORrYDQtEeixv_sLOod4lQ">
            <body>Describes external interface(s) exposed by this VNF enabling connection with a VL.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_V2QhQDQuEeixv_sLOod4lQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_V2SWcDQuEeixv_sLOod4lQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_huauwNDjEeqta_vMxqAxxw" name="vipcpd" type="_0YVYQMYDEeqGwZoAtvAq1A" aggregation="composite" association="_huWdUNDjEeqta_vMxqAxxw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_a8cTsOCREeq4TaxvD15GLA">
            <body>Describes virtual IP addresses to be shared among instances of connection points.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_huhccNDjEeqta_vMxqAxxw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_huhccdDjEeqta_vMxqAxxw" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_l3zPoATQEeuUzLXQ51gGgw" name="virtualCpd" type="_IFkAYA8MEeuBquWJMTL0qg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_wOO38ATQEeuUzLXQ51gGgw" annotatedElement="_l3zPoATQEeuUzLXQ51gGgw">
            <body>Describes a virtual connection point allowing to access a set of VNFC instances (based on their respective VDUs).&#xD;
&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qJIh8ATQEeuUzLXQ51gGgw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qJMMUATQEeuUzLXQ51gGgw" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zxa4AzQvEeixv_sLOod4lQ" name="deploymentFlavour" type="_p0UVsDQvEeixv_sLOod4lQ" aggregation="composite" association="_zxa4ADQvEeixv_sLOod4lQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_AAKQUDkTEeiWMf5FLWfdLA" annotatedElement="_zxa4AzQvEeixv_sLOod4lQ">
            <body>Describes specific DF(s) of a VNF with specific requirements for capacity and performance.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xuYMwDQwEeixv_sLOod4lQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_xumPMDQwEeixv_sLOod4lQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zr-tcDkIEeiWMf5FLWfdLA" name="configurableProperties" visibility="public" type="_ZqQQ8DkIEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Isl08DkTEeiWMf5FLWfdLA" annotatedElement="_zr-tcDkIEeiWMf5FLWfdLA">
            <body>Describes the configurable properties of the VNF (e.g. related to auto scaling and auto healing).</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-Ysu0DkIEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-ZG-gDkIEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_CnvFoDkKEeiWMf5FLWfdLA" name="modifiableAttributes" visibility="public" type="_iZQzADkJEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Owm78DkKEeiWMf5FLWfdLA" annotatedElement="_CnvFoDkKEeiWMf5FLWfdLA">
            <body>Defines the VNF-specific extension and metadata attributes of the VnfInfo that are writeable via the ModifyVnfInfo operation.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KBLYYDkKEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KBsVwDkKEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HklksDkLEeiWMf5FLWfdLA" name="lifecycleManagementScript" visibility="public" type="_1HQGsDkKEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RQK_kDkTEeiWMf5FLWfdLA" annotatedElement="_HklksDkLEeiWMf5FLWfdLA">
            <body>Includes a list of events and corresponding management scripts performed for the VNF.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Ns7b8DkLEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_NtpNoDkLEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_7QOj8DTUEeiwQ6KPLHcy4g" name="vnfIndicator" type="_tEnEsDTSEeiwQ6KPLHcy4g" aggregation="shared" association="_7QNV0DTUEeiwQ6KPLHcy4g">
          <ownedComment xmi:type="uml:Comment" xmi:id="_a-HrkDkTEeiWMf5FLWfdLA" annotatedElement="_7QOj8DTUEeiwQ6KPLHcy4g">
            <body>Declares the VNF indicators that are supported by this VNF.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_g8vckDkHEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_g9j78DkHEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4WUVsPdkEeq0Kr0QR-lqNw" name="autoScale">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xABBEPdlEeq0Kr0QR-lqNw">
            <body>Rule that determines when a scaling action needs to be triggered on a VNF instance e.g. based on certain VNF indicator values or VNF indicator value changes or a combination of VNF indicator value(s) and monitoring parameter(s).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_8rNJgD2uEeiu6I5JfRTxxQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FiGagPdlEeq0Kr0QR-lqNw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_FiLTAPdlEeq0Kr0QR-lqNw" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_rDsWQPhaEeqImeFkB-PnTA" name="vnfpackagechangeinfo" type="_ownWsPdlEeq0Kr0QR-lqNw" aggregation="composite" association="_rDlokPhaEeqImeFkB-PnTA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5MWJUPdlEeq0Kr0QR-lqNw">
            <body>Information used for performing the change of the current VNF Package. More than one VNF Package Change Info construct is possible to cater the possibility that changes of the current VNF Package can be performed for different source VNFDs.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_rD1gMPhaEeqImeFkB-PnTA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_rD1gMfhaEeqImeFkB-PnTA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HSx60vheEeqImeFkB-PnTA" name="lcmOperationCoordination" type="_f2Mj8PdmEeq0Kr0QR-lqNw" aggregation="composite" association="_HSwssPheEeqImeFkB-PnTA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_oBE6sPdmEeq0Kr0QR-lqNw">
            <body>Provides information used for the coordination in VNF LCM operations.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HS2zUPheEeqImeFkB-PnTA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HS2zUfheEeqImeFkB-PnTA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fDnbgATPEeuUzLXQ51gGgw" name="mciopId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nyhsYATPEeuUzLXQ51gGgw" annotatedElement="_fDnbgATPEeuUzLXQ51gGgw">
            <body>Identifies the MCIOP(s) in the VNF package, used in containerized workload management, when the VNF is realized by a set of OS containers.  </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_i3QsQATPEeuUzLXQ51gGgw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_i3VkwATPEeuUzLXQ51gGgw" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_e5WnwDOREeiHat9KcP8uWA" name="Vdu">
        <ownedComment xmi:type="uml:Comment" xmi:id="_yxlRsDWaEeiwQ6KPLHcy4g" annotatedElement="_e5WnwDOREeiHat9KcP8uWA">
          <body>The Virtualisation Deployment Unit (VDU) is a construct supporting the description of the deployment and operational behavior of a VNFC. &#xD;
&#xD;
A VNFC instance created based on the VDU maps to a single instance of atomic deployable unit, represented by a single VM for hypervisor-based virtualisation, or represented by one or a set of OS containers for OS virtualisation .&#xD;
&#xD;
A VNFC will only be in one VNFDesc.   If a vendor wants to use the VNFC in mupliple VNFDesc (their product) they can do so, but it will be 'repeated'.&#xD;
&#xD;
 &#xD;
&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_l8PhgDWbEei9Ia34RXjpEg" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sSUSwDWbEei9Ia34RXjpEg" annotatedElement="_l8PhgDWbEei9Ia34RXjpEg">
            <body>Unique identifier of this Vdu in VNFD.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wWU6wDWbEei9Ia34RXjpEg" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_047jQDWbEei9Ia34RXjpEg" annotatedElement="_wWU6wDWbEei9Ia34RXjpEg">
            <body>Human readable name of the Vdu.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2-9boDWbEei9Ia34RXjpEg" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6Ut2gDWbEei9Ia34RXjpEg" annotatedElement="_2-9boDWbEei9Ia34RXjpEg">
            <body>Human readable description of the Vdu.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mq0DkDafEei23_xWdimG9w" name="bootOrder">
          <ownedComment xmi:type="uml:Comment" xmi:id="_EtlToDagEei23_xWdimG9w" annotatedElement="_mq0DkDafEei23_xWdimG9w">
            <body>Boot order of valid boot devices.  &quot;key/name&quot; indicates the the boot index &quot;value&quot; references a descriptor from which a valid boot device is created e.g. VirtualStorageDesc from which a VirtualStorage instance is created.&#xD;
&#xD;
NOTE: If no boot order is defined the default boot order defined in the VIM or NFVI shall be used.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9IXOsDafEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9IcuQDafEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1yX4kDafEei23_xWdimG9w" name="nfviConstraint">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NkiQwDahEei23_xWdimG9w" annotatedElement="_1yX4kDafEei23_xWdimG9w">
            <body>Describes constraints on the NFVI for the VNFC instance(s) created from this Vdu. For example, aspects of a secure hosting environment for the VNFC instance that involve additional entities or processes. &quot;key/name&quot; includes &quot;AvailabilityZone&quot;, &quot;HostAggregates&quot;.&#xD;
&#xD;
NOTE: These are constraints other than stipulating that a VNFC instance has access to a certain resource, as a prerequisite to instantiation. The attributes virtualComputeDesc and virtualStorageDesc define the resources required for instantiation of the VNFC instance.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PFhiYDahEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PFma4DahEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HN9eEDmzEeiWMf5FLWfdLA" name="monitoringParameter" visibility="public" type="_HlF2kDmxEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NCr1wDmzEeiWMf5FLWfdLA" annotatedElement="_HN9eEDmzEeiWMf5FLWfdLA">
            <body>Defines the virtualised resources monitoring parameters on VDU level.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Rz7-QDmzEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_R0btgDmzEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mIpmIDapEei23_xWdimG9w" name="injectFiles">
          <ownedComment xmi:type="uml:Comment" xmi:id="_vKCHEDapEei23_xWdimG9w" annotatedElement="_mIpmIDapEei23_xWdimG9w">
            <body>Describes the information (e.g. URL) about the scripts, config drive metadata, etc. which can be used during Vdu booting process.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ssu-MDapEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ss0dwDapEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mC-f4DmyEeiWMf5FLWfdLA" name="configurableProperties" visibility="public" type="_MRthQDmyEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_04p6sDmyEeiWMf5FLWfdLA" annotatedElement="_mC-f4DmyEeiWMf5FLWfdLA">
            <body>Describes the configurable properties of all VNFC instances based on this VDU.	</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Bm4IAMbGEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_NQ3eYCo3EemZ-7haRVvogQ" name="bootData" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_15QpUCo3EemZ-7haRVvogQ" annotatedElement="_NQ3eYCo3EemZ-7haRVvogQ">
            <body>Contains a string or a URL to a file contained in the VNF package used to customize a virtualised compute resource at boot time. The bootData may contain variable parts that are replaced by deployment specific values before being sent to the VIM.&#xD;
NOTE:   The parameters of each variable part shall be declared in the VnfLcmOperationsConfiguration information element  as &quot;volatile&quot; parameters available to the bootData template during the respective VNF lifecycle management operation execution and/or in the extension attribute of the VnfInfoModifiableAttributes information element as &quot;persistent&quot; parameters available to the bootData template during the lifetime of the VNF instance. For VNF lifecycle management operations resulting in multiple VNFC instantiations, the VNFM supports the means to provide the appropriate parameters to appropriate VNFC instances	Experimental&#xD;
 &#xD;
&#xD;
 &#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Vlb8oCo3EemZ-7haRVvogQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_VmBygCo3EemZ-7haRVvogQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_j9-9sDWeEei9Ia34RXjpEg" name="intCpd" type="_zOfv8DQVEeixv_sLOod4lQ" aggregation="shared" association="_j97TUDWeEei9Ia34RXjpEg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5laYgFqSEeiTzriVSbKglg" annotatedElement="_j9-9sDWeEei9Ia34RXjpEg">
            <body>Describes network connectivity between a VNFC instance (based on this Vdu) and an internal Virtual Link (VL).</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_345dADabEei23_xWdimG9w" name="virtualComputeDesc" type="_-gDvwDOREeiHat9KcP8uWA" aggregation="shared" association="_343n0DabEei23_xWdimG9w">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9hdXUFqSEeiTzriVSbKglg" annotatedElement="_345dADabEei23_xWdimG9w">
            <body>Describes CPU, Memory and acceleration requirements of the Virtualisation Container realising this Vdu.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_NuP_sDacEei23_xWdimG9w" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Nui6oDacEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_66t9sB0XEeuefrxxkEb1lQ" name="osContainerdesc" visibility="package" type="_SYZyIFBHEeu9q4B_TIiAOQ" association="_66psQB0XEeuefrxxkEb1lQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kr4nYATWEeuUzLXQ51gGgw">
            <body>Describes CPU, memory requirements and limits, and software images of the OS Containers realizing this Vdu corresponding to OS Containers sharing the same host and same network namespace. Each unique identifier is referenced only once within one VDU.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_66y2MB0XEeuefrxxkEb1lQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_66y2MR0XEeuefrxxkEb1lQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uwHosDadEei23_xWdimG9w" name="virtualStorageDesc" type="_K_9mADOSEeiHat9KcP8uWA" aggregation="shared" association="_uwCwMDadEei23_xWdimG9w">
          <ownedComment xmi:type="uml:Comment" xmi:id="_AmRMIFqTEeiTzriVSbKglg" annotatedElement="_uwHosDadEei23_xWdimG9w">
            <body>Describes storage requirements for a VirtualStorage instance attached to the virtualisation container created from virtualComputeDesc defined for this Vdu.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gBTOYDaeEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gBVqoDaeEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MxzowjagEei23_xWdimG9w" name="swImageDesc" type="_J0Zx0DOSEeiHat9KcP8uWA" aggregation="shared" association="_MxzBsDagEei23_xWdimG9w">
          <ownedComment xmi:type="uml:Comment" xmi:id="_EPv0QFqTEeiTzriVSbKglg" annotatedElement="_MxzowjagEei23_xWdimG9w">
            <body>Describes the software image which is directly loaded on the virtualisation container realising this Vdu.&#xD;
&#xD;
NOTE: More software images can be attached to the virtualisation container using VirtualStorage resources.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_aeqaUDagEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_aetdoDagEei23_xWdimG9w" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_J0Zx0DOSEeiHat9KcP8uWA" name="SwImageDesc">
        <ownedComment xmi:type="uml:Comment" xmi:id="_8Nl8oDasEei23_xWdimG9w" annotatedElement="_J0Zx0DOSEeiHat9KcP8uWA">
          <body>The SwImageDesc information element describes requested additional capability for a particular VDU. Such a capability may be for acceleration or specific tasks.   Storage not necessarily related to the compute, may be Network Attached Storage (NAS)&#xD;
&#xD;
&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lDoCUDaqEei23_xWdimG9w" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tqsl0DaqEei23_xWdimG9w" annotatedElement="_lDoCUDaqEei23_xWdimG9w">
            <body>The identifier of this software image.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_v5FwADaqEei23_xWdimG9w" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LGlcEDarEei23_xWdimG9w" annotatedElement="_v5FwADaqEei23_xWdimG9w">
            <body>The name of this software image.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OYLvsDarEei23_xWdimG9w" name="version">
          <ownedComment xmi:type="uml:Comment" xmi:id="_St4koDarEei23_xWdimG9w" annotatedElement="_OYLvsDarEei23_xWdimG9w">
            <body>The version of this software image.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_U-xUUMbHEeqGwZoAtvAq1A" name="provider">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YzTngOCSEeq4TaxvD15GLA">
            <body>The provider of this software image. If not present the provider of the software image is assumed to be same as the VNF provider.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZU6OIMbHEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bcG5ADarEei23_xWdimG9w" name="containerFormat">
          <ownedComment xmi:type="uml:Comment" xmi:id="_g3T9cDarEei23_xWdimG9w" annotatedElement="_bcG5ADarEei23_xWdimG9w">
            <body>The container format describes the container file format in which software image is provided.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_k5xGQDarEei23_xWdimG9w" name="diskFormat">
          <ownedComment xmi:type="uml:Comment" xmi:id="_pvp3IDarEei23_xWdimG9w" annotatedElement="_k5xGQDarEei23_xWdimG9w">
            <body>The disk format of a software image is the format of the underlying disk image.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9W_HADm0EeiWMf5FLWfdLA" name="minRam" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Je_aoDm1EeiWMf5FLWfdLA" annotatedElement="_9W_HADm0EeiWMf5FLWfdLA">
            <body>The minimal RAM requirement for this software image. The value of the &quot;size&quot; attribute of VirtualMemoryData of the Vdu referencing this SwImageDesc shall not be smaller than the value of minRam.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HUYkQDm1EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HU0CEDm1EeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_svqrgDarEei23_xWdimG9w" name="minDisk">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1EVQYDarEei23_xWdimG9w" annotatedElement="_svqrgDarEei23_xWdimG9w">
            <body>The minimal disk size requirement for this software image. The value of the &quot;size of storage&quot; attribute of the VirtualStorageDesc referencing this SwImageDesc shall not be smaller than the value of minDisk.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_SW0-ADm1EeiWMf5FLWfdLA" name="size" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZjmGsDm1EeiWMf5FLWfdLA" annotatedElement="_SW0-ADm1EeiWMf5FLWfdLA">
            <body>The size of the software image.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DhvVIDasEei23_xWdimG9w" name="operatingSystem">
          <ownedComment xmi:type="uml:Comment" xmi:id="_KKX2ADasEei23_xWdimG9w" annotatedElement="_DhvVIDasEei23_xWdimG9w">
            <body>Identifies the operating system used in the software image. This attribute may also identify if a 32 bit or 64 bit software image is used.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HX5HUDasEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HX9_0DasEei23_xWdimG9w" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_QAAzsDasEei23_xWdimG9w" name="supportedVirtualisationEnvironment">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WWOH0DasEei23_xWdimG9w" annotatedElement="_QAAzsDasEei23_xWdimG9w">
            <body>Identifies the virtualisation environments (e.g. hypervisor) compatible with this software image.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xw1rsDasEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Xw-1oDasEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_iGrS0Co7EemS0_wZSU3sbA" name="_swImage" type="_u4EXICo6EemS0_wZSU3sbA" association="_iGbbMCo7EemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6D454Co7EemS0_wZSU3sbA" annotatedElement="_iGrS0Co7EemS0_wZSU3sbA">
            <body>This is a reference to the actual software image. The reference can be relative to the root of the VNF Package or can be a URL</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_iGuWICo7EemS0_wZSU3sbA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_iGvkQCo7EemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_sz8G4NtFEeqc48iFXy8U7A" name="checksumdata" type="_yyh4AMbHEeqGwZoAtvAq1A" association="_sz4cgNtFEeqc48iFXy8U7A"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_ISONYDOSEeiHat9KcP8uWA" name="VduProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_7TLoQFqaEeiTzriVSbKglg" annotatedElement="_ISONYDOSEeiHat9KcP8uWA">
          <body>The VduProfile describes additional instantiation data for a given VDU used in a DF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bEqsgDdzEeiIfPeSAqyGdQ" name="minNumberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Jlr3sDd0EeiIfPeSAqyGdQ" annotatedElement="_bEqsgDdzEeiIfPeSAqyGdQ">
            <body>Minimum number of instances of the VNFC based on this VDU that is permitted to exist for this flavour. Shall be zero or greater.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_cCrM4DdzEeiIfPeSAqyGdQ" name="maxNumberOfInstances">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RiJigDd1EeiIfPeSAqyGdQ" annotatedElement="_cCrM4DdzEeiIfPeSAqyGdQ">
            <body>Maximum number of instances of the VNFC based on this VDU that is permitted to exist for this flavour. Shall be zero or greater.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_dFetsDdzEeiIfPeSAqyGdQ" name="localAffinityOrAntiAffinityRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_2Ur2MDd1EeiIfPeSAqyGdQ" annotatedElement="_dFetsDdzEeiIfPeSAqyGdQ">
            <body>Specifies affinity or anti-affinity rules applicable between the virtualization containers (e.g. virtual machines) to be created based on this VDU. When the cardinality is greater than 1, both affinity rule(s) and anti-affinity rule(s) with different scopes (e.g. &quot;Affinity with the scope resource zone and anti-affinity with the scope NFVI node&quot;) are applicable to the virtualization containers (e.g. virtual machines) to be created based on this VDU.&#xD;
When the cardinality is greater than 1, both affinity rule(s) and anti-affinity rule(s) with different scopes (e.g. &quot;Affinity with the scope resource zone and anti-affinity with the scope NFVI node&quot;) are applicable to the virtualization containers (e.g. virtual machines) to be created based on this VDU.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_7hn1IDd1EeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hw0hYJmdEeibE8EgApNciA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hw6oAJmdEeibE8EgApNciA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_dl5TIDdzEeiIfPeSAqyGdQ" name="affinityOrAntiAffinityGroupId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_8sOBUEceEei7eo5RdnNiBQ" annotatedElement="_dl5TIDdzEeiIfPeSAqyGdQ">
            <body>Identifier(s) of the affinity or anti-affinity group(s) the VDU belongs to.&#xD;
&#xD;
NOTE: Each identifier references an affinity or anti-affinity group which expresses affinity or anti-affinity relationships between the virtualisation container(s) (e.g. virtual machine(s)) to be created using this VDU and the virtualisation container(s) (e.g. virtual machine(s)) to be created using other VDU(s) in the same group.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3X5p4Dd5EeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3X-iYDd5EeiIfPeSAqyGdQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ehkRMDdzEeiIfPeSAqyGdQ" name="watchdog">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9AlwsDd5EeiIfPeSAqyGdQ" annotatedElement="_ehkRMDdzEeiIfPeSAqyGdQ">
            <body>Watchdog action to be triggered by the VIM for the VNF in case the heart beat fails, e.g. reset or hard shutdown, etc.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7AxOADd5EeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7AzqQDd5EeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fXB5kDdzEeiIfPeSAqyGdQ" name="vmBootUpTimeOut">
          <ownedComment xmi:type="uml:Comment" xmi:id="_G_55gDd6EeiIfPeSAqyGdQ" annotatedElement="_fXB5kDdzEeiIfPeSAqyGdQ">
            <body>Timeout value for the VNFM to wait before the successful booting up of the VDU.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DhBX0Dd6EeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DhFCMDd6EeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tID8QPuOEeiYVshOvl6_ww" name="securityGroups">
          <ownedComment xmi:type="uml:Comment" xmi:id="_48w5YPuOEeiYVshOvl6_ww" annotatedElement="_tID8QPuOEeiYVshOvl6_ww">
            <body>VNFD needs to specify the security group name {security_groups} for each VDU.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_y5pgYPuOEeiYVshOvl6_ww"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_y51toPuOEeiYVshOvl6_ww" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4rzi8A5rEemrJqq3q9vf6g" name="flavorExtraSpecs">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RCwpQA54EemrJqq3q9vf6g" annotatedElement="_4rzi8A5rEemrJqq3q9vf6g">
            <body>Additional expansion requirements for Infrastructure layer, e.g. HA property (Host Aggregate ).</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_WHasYA5sEemrJqq3q9vf6g"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_WHioMA5sEemrJqq3q9vf6g" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6rucQCsHEemS0_wZSU3sbA" name="_vduId" type="_e5WnwDOREeiHat9KcP8uWA" aggregation="shared" association="_6rsAACsHEemS0_wZSU3sbA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_6rwRcCsHEemS0_wZSU3sbA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_6rwRcSsHEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_-gDvwDOREeiHat9KcP8uWA" name="VirtualComputeDesc ">
        <ownedComment xmi:type="uml:Comment" xmi:id="_JozqAFqbEeiTzriVSbKglg" annotatedElement="_-gDvwDOREeiHat9KcP8uWA">
          <body>The VirtualComputeDesc information element supports the specification of requirements related to virtual compute resources.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_CEDZsDatEei23_xWdimG9w" name="virtualComputeDescId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Hyva0DatEei23_xWdimG9w" annotatedElement="_CEDZsDatEei23_xWdimG9w">
            <body>Unique identifier of this VirtualComputeDesc in the VNFD</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_S4W1oDazEei23_xWdimG9w" name="requestAdditionalCapabilities" type="_dSO64DawEei23_xWdimG9w">
          <ownedComment xmi:type="uml:Comment" xmi:id="_FuKi8EcfEei7eo5RdnNiBQ" annotatedElement="_S4W1oDazEei23_xWdimG9w">
            <body>Specifies requirements for additional capabilities. These may be for a range of purposes. One example is acceleration related capabilities.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H-BhsDm2EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H-olsDm2EeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_cn9ugDazEei23_xWdimG9w" name="computeRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_j_cSYDazEei23_xWdimG9w" annotatedElement="_cn9ugDazEei23_xWdimG9w">
            <body>Specifies compute requirements.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hnim4DazEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hnvbMDazEei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6gNJkDazEei23_xWdimG9w" name="virtualMemory" type="_AJK9MDa0Eei23_xWdimG9w">
          <ownedComment xmi:type="uml:Comment" xmi:id="_8Hio4Da1Eei23_xWdimG9w" annotatedElement="_6gNJkDazEei23_xWdimG9w">
            <body>The virtual memory of the virtualised compute.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1iyicDa1Eei23_xWdimG9w" name="virtualCpu" type="_tIZ6oDa2Eei23_xWdimG9w">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6FWusDa1Eei23_xWdimG9w" annotatedElement="_1iyicDa1Eei23_xWdimG9w">
            <body>The virtual CPU(s) of the virtualised compute.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_gmSWwCo-EemS0_wZSU3sbA" name="_logicalNodeRequirements" type="_Lpu5wCo9EemS0_wZSU3sbA" aggregation="composite" association="_gmOFUCo-EemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Ovzn8Co_EemS0_wZSU3sbA" annotatedElement="_gmSWwCo-EemS0_wZSU3sbA">
            <body>The associated logical node requirements.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gmUL8Co-EemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gmVaECo-EemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_BecYMCpCEemS0_wZSU3sbA" name="virtualDisk" visibility="public" type="_iunqUCpAEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Okb-ECpCEemS0_wZSU3sbA" annotatedElement="_BecYMCpCEemS0_wZSU3sbA">
            <body>The local or ephemeral disk(s) of the virtualised compute.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_L5v5cCpCEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_L6MlYCpCEemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_K_9mADOSEeiHat9KcP8uWA" name="VirtualStorageDesc">
        <ownedComment xmi:type="uml:Comment" xmi:id="__z8IwCpCEemS0_wZSU3sbA" annotatedElement="_K_9mADOSEeiHat9KcP8uWA">
          <body>The VirtualStorageDesc information element supports the specifications of requirements related to persistent virtual storage resources. Ephemeral virtual storage is specified in VirtualComputeDesc information element.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4y_6QDdKEeiIfPeSAqyGdQ" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_IC7BEDdLEeiIfPeSAqyGdQ" annotatedElement="_4y_6QDdKEeiIfPeSAqyGdQ">
            <body>Unique identifier of this VirtualStorageDesc in the VNFD.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6sJ0QDdKEeiIfPeSAqyGdQ" name="typeOfStorage">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NbjSoDdLEeiIfPeSAqyGdQ" annotatedElement="_6sJ0QDdKEeiIfPeSAqyGdQ">
            <body> Type of virtualised storage resource (BLOCK, OBJECT, FILE).&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_7J45IDdKEeiIfPeSAqyGdQ" name="sizeOfStorage">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TQV7wDdLEeiIfPeSAqyGdQ" annotatedElement="_7J45IDdKEeiIfPeSAqyGdQ">
            <body>Size of virtualised storage resource &#xD;
(e.g. size of volume, in GB).&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nb_4ECpDEemS0_wZSU3sbA" name="blockStorageData" visibility="public" type="_iunqUCpAEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xEKsMCpDEemS0_wZSU3sbA" annotatedElement="_nb_4ECpDEemS0_wZSU3sbA">
            <body>Specifies the details of block storage. It shall be present when the &quot;typeOfStorage&quot; attribute is set to &quot;BLOCK&quot;. It shall be absent otherwise.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_uN5psCpDEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_uOYK0CpDEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_WPIG8CpEEemS0_wZSU3sbA" name="objectStorageData" visibility="public" type="_5p1FACpEEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_eix_MCpEEemS0_wZSU3sbA" annotatedElement="_WPIG8CpEEemS0_wZSU3sbA">
            <body>Specifies the details of object storage. It shall be present when the &quot;typeOfStorage&quot; attribute is set to &quot;OBJECT&quot;. It shall be absent </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_cQLqcCpEEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_cQfMcCpEEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_orvzQCpEEemS0_wZSU3sbA" name="fileStorageData" visibility="public" type="_OCLeMCpFEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_toWQICpEEemS0_wZSU3sbA" annotatedElement="_orvzQCpEEemS0_wZSU3sbA">
            <body>Specifies the details of file storage. It shall be present when the &quot;typeOfStorage&quot; attribute is set to &quot;FILE&quot;. It shall be absent otherwise.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_r0MK4CpEEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_r0g7ACpEEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_QOpoEPwqEeijjKJn7OxwuQ" name="multiAttach">
          <ownedComment xmi:type="uml:Comment" xmi:id="_axvMUPwqEeijjKJn7OxwuQ" annotatedElement="_QOpoEPwqEeijjKJn7OxwuQ">
            <body>Indicating whether a vDisk is a shared volume in VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_S7jTMPwqEeijjKJn7OxwuQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_S8B0UPwqEeijjKJn7OxwuQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_u6wxQPxEEeijjKJn7OxwuQ" name="storageQos" type="_hzvvUPxSEeijjKJn7OxwuQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_W9RAABDBEemFz_A_9-IJMQ" annotatedElement="_u6wxQPxEEeijjKJn7OxwuQ">
            <body>Describe storage Qos requirements.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xdX38PxEEeijjKJn7OxwuQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_xd2ZEPxEEeijjKJn7OxwuQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_7qyuMPxEEeijjKJn7OxwuQ" name="volumeType" type="_cyGIcPxUEeijjKJn7OxwuQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Y_SiIBDBEemFz_A_9-IJMQ" annotatedElement="_7qyuMPxEEeijjKJn7OxwuQ">
            <body>Describe volume type.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HakIAPxFEeijjKJn7OxwuQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HcFyAPxFEeijjKJn7OxwuQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2OL5IATZEeuUzLXQ51gGgw" name="volumeTemplate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9pmh0ATZEeuUzLXQ51gGgw" annotatedElement="_2OL5IATZEeuUzLXQ51gGgw">
            <body>Indicates whether the virtual storage descriptor shall be used as template, i.e. if the virtual storage resource shall be instantiated per VNFC instance.&#xD;
If the value is true (default), a persistent virtual storage resource shall be instantiated for each VNFC instance that is based on a VDU referring to this virtual storage descriptor.&#xD;
If the value is false, a single persistent virtual storage resource shall be instantiated with a lifetime independent of the lifetime of individual VNFC instances based on a VDU referring to this virtual storage descriptor.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_6Jdb4ATZEeuUzLXQ51gGgw"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_zOfv8DQVEeixv_sLOod4lQ" name="VduCpd ">
        <ownedComment xmi:type="uml:Comment" xmi:id="_-4XYgFqVEeiTzriVSbKglg" annotatedElement="_zOfv8DQVEeixv_sLOod4lQ">
          <body>A VduCpd information element is a type of Cpd and describes network connectivity between a VNFC instance (based on this VDU) and an internal VL.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_W3y74DdREeiIfPeSAqyGdQ">
          <general xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_7nJYsDdREeiIfPeSAqyGdQ" name="bitrateRequirement">
          <ownedComment xmi:type="uml:Comment" xmi:id="_B1YckDdSEeiIfPeSAqyGdQ" annotatedElement="_7nJYsDdREeiIfPeSAqyGdQ">
            <body>Bitrate requirement on this CP.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="__UQjoDdREeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__UXRUDdREeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_7dX8MDdSEeiIfPeSAqyGdQ" name="vnicName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_FVkwYDdTEeiIfPeSAqyGdQ" annotatedElement="_7dX8MDdSEeiIfPeSAqyGdQ">
            <body>Describes the name of the vNIC this CP attaches to, e.g. eth0. It will be configured during the Vdu booting process.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_CJ3pYDdTEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_CJ9I8DdTEeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_8R7loDdSEeiIfPeSAqyGdQ" name="vnicOrder">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TfgfgDdTEeiIfPeSAqyGdQ" annotatedElement="_8R7loDdSEeiIfPeSAqyGdQ">
            <body>Describes the order to create the vNIC within the scope of this Vdu.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Q4yU4DdTEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Q42mUDdTEeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_875IoDdSEeiIfPeSAqyGdQ" name="vnicType" type="_DaKYIDm6EeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iX-voDdTEeiIfPeSAqyGdQ" annotatedElement="_875IoDdSEeiIfPeSAqyGdQ">
            <body>Describes the type of the virtual network interface realizing the CPs instantiated from this CPD. This is used to determine which mechanism driver(s) to be used to bind the port. &#xD;
VALUES: &#xD;
•	NORMAL&#xD;
•	MACVTAP&#xD;
•	DIRECT&#xD;
•	BAREMETAL&#xD;
•	VIRTIO-FORWARDER&#xD;
•	DIRECT-PHYSICAL&#xD;
•	SMART-NIC&#xD;
&#xD;
Additional values of the attribute for VDUs realized by one or set of OS containers:&#xD;
&#xD;
•	BRIDGE&#xD;
•	IPVLAN&#xD;
•	LOOPBACK&#xD;
•	MACVLAN&#xD;
•	PTP&#xD;
•	VLAN&#xD;
•	HOST-DEVICE&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_etVC0DdTEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_etYGIDdTEeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_guTdEjm5EeiWMf5FLWfdLA" name="_virtualNetworkInterfaceRequirements" type="_8BUXwDm4EeiWMf5FLWfdLA" aggregation="composite" association="_gt50cDm5EeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_fiuZEFqaEeiTzriVSbKglg" annotatedElement="_guTdEjm5EeiWMf5FLWfdLA">
            <body>Specifies requirements on a virtual network interface realising the CPs instantiated from this CPD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_guUrMDm5EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_guVSQDm5EeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_0yXWgPuDEeikN6fzJzDfWw" name="sriovAntiAffinityGroup">
          <ownedComment xmi:type="uml:Comment" xmi:id="_clvlAPuEEeikN6fzJzDfWw" annotatedElement="_0yXWgPuDEeikN6fzJzDfWw">
            <body>Define the port anti-affinity group ID for each SR-IOV type vNIC. Multiple vNICs in the same anti-affinity group must belong to the same virtual network, and the number of vNICs in the same anti-affinity group cannot exceed two.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4MkMgPuDEeikN6fzJzDfWw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4R5_gPuDEeikN6fzJzDfWw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ilsVQPuEEeikN6fzJzDfWw" name="securityGroups">
          <ownedComment xmi:type="uml:Comment" xmi:id="_EqOxoPuFEeikN6fzJzDfWw" annotatedElement="_ilsVQPuEEeikN6fzJzDfWw">
            <body>VNFD needs to specify the security group name {security_groups} for each vNic.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_1nr_gPuEEeikN6fzJzDfWw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_1s7r4PuEEeikN6fzJzDfWw" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PyPn4PuFEeikN6fzJzDfWw" name="portSecurityEnabled">
          <ownedComment xmi:type="uml:Comment" xmi:id="__Kv_QPuGEeiYVshOvl6_ww" annotatedElement="_PyPn4PuFEeikN6fzJzDfWw">
            <body> VNFD needs to specify whether to enable security group for the vNic.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_UjCdYPuFEeikN6fzJzDfWw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UokdoPuFEeikN6fzJzDfWw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZhRloBlYEem_VM0Ij2_uSw" name="qos">
          <ownedComment xmi:type="uml:Comment" xmi:id="_aS1WsBleEem_VM0Ij2_uSw" annotatedElement="_ZhRloBlYEem_VM0Ij2_uSw">
            <body>Describe the Qos requirements of the VduCpd.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_B1G2UDd_EeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ux4cgBlYEem_VM0Ij2_uSw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ux-jIBlYEem_VM0Ij2_uSw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6rvSESsBEemS0_wZSU3sbA" name="_intVirtualLinkDesc" type="_-5-w8Cr9EemS0_wZSU3sbA" association="_6rs10CsBEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YmvtQCsCEemS0_wZSU3sbA" annotatedElement="_6rvSESsBEemS0_wZSU3sbA">
            <body>Reference(s) of the Virtual Link Descriptor to which this Connection Point Descriptor(s) connects.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_6rxHQCsBEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_6rxHQSsBEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_p8meQDa8EeivvI-m1BaAbA" name="allowedAddressData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kI39QEbwEei7eo5RdnNiBQ" annotatedElement="_p8meQDa8EeivvI-m1BaAbA">
            <body>For specifying floating IP(s) to be shared among Cpds, which are reserved for vnfReservedCpd described in the VNFD.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_2aIggDa9EeivvI-m1BaAbA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H0-cMDa9EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H1CtoDa9EeivvI-m1BaAbA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_p0UVsDQvEeixv_sLOod4lQ" name="VnfDf ">
        <ownedComment xmi:type="uml:Comment" xmi:id="_l0ZY4GNVEeio9amveq0yWQ" annotatedElement="_p0UVsDQvEeixv_sLOod4lQ">
          <body>The VnfDf describes a specific deployment version of a VNF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vbvVgDeCEeiIfPeSAqyGdQ" name="flavorId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_07GhMDeCEeiIfPeSAqyGdQ" annotatedElement="_vbvVgDeCEeiIfPeSAqyGdQ">
            <body>Identifier of this DF within the VNFD.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2cgCgDeCEeiIfPeSAqyGdQ" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6mQGIDeCEeiIfPeSAqyGdQ" annotatedElement="_2cgCgDeCEeiIfPeSAqyGdQ">
            <body>Human readable description of the DF.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_oGtFECsLEemS0_wZSU3sbA" name="defaultInstantiationLevel" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zJzmICsLEemS0_wZSU3sbA" annotatedElement="_oGtFECsLEemS0_wZSU3sbA">
            <body>This attribute references the &quot;instantiationLevel&quot; entry which defines the default instantiation level for this DF. It shall be present if there are multiple &quot;instantiationLevel&quot; entries.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_wkFhECsLEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_wkd7kCsLEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J48QgCsMEemS0_wZSU3sbA" name="monitoringParameter" visibility="public" type="_HlF2kDmxEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RRGw4CsMEemS0_wZSU3sbA" annotatedElement="_J48QgCsMEemS0_wZSU3sbA">
            <body>Specifies the virtualised resource related performance metrics to be tracked by the VNFM.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Ogm_MCsMEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OhAAwCsMEemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KN9YcTnAEeiWMf5FLWfdLA" name="_virtuaLlinkProfile" type="_0lvvQDgREeiOYfGHew0BGg" aggregation="shared" association="_KN7jQDnAEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GIMQYGNWEeio9amveq0yWQ" annotatedElement="_KN9YcTnAEeiWMf5FLWfdLA">
            <body>Defines the internal VLD along with additional data which is used in this DF.&#xD;
&#xD;
NOTE 1: This allows for different VNF internal topologies between DFs.&#xD;
&#xD;
NOTE 2: virtualLinkProfile needs to be provided for all VLs that the CPs of the VDUs in the VDU profiles connect to.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KN-mkDnAEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KN_NoDnAEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OCdvYTnBEeiWMf5FLWfdLA" name="_instantiationLevel" type="_6C8F4DnAEeiWMf5FLWfdLA" aggregation="shared" association="_OCb6MDnBEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NxSIsGNWEeio9amveq0yWQ" annotatedElement="_OCdvYTnBEeiWMf5FLWfdLA">
            <body>Describes the various levels of resources that can be used to instantiate the VNF using this flavour.&#xD;
&#xD;
Examples: Small, Medium, Large.&#xD;
&#xD;
If there is only one &quot;instantiationLevel&quot; entry, it shall be treated as the default instantiation level for this DF.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OCe9gDnBEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OCfkkDnBEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Y7jjYTnCEeiWMf5FLWfdLA" name="_affinityOrAntiAffinityGroup" aggregation="shared" association="_Y7f5ADnCEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UIlpAGNWEeio9amveq0yWQ" annotatedElement="_Y7jjYTnCEeiWMf5FLWfdLA">
            <body>Specifies affinity or anti-affinity relationship applicable between the virtualisation containers (e.g. virtual machines) to be created using different VDUs or internal VLs to be created using different VnfVirtualLinkDesc(s) in the same affinity or anti-affinity group.&#xD;
&#xD;
NOTE: In the present specification, including either VDU(s) or VnfVirtualLinkDesc(s) into the same affinity or anti-affinity group is supported. Extension to support including both VDU(s) and VnfVirtualLinkDesc(s) into the same affinity or anti-affinity group is left for future specification.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_0AbUYDnBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Y8ia0DnCEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Y8ia0TnCEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_UZQncjnDEeiWMf5FLWfdLA" name="_scalingAspect" type="_DlOpkDnDEeiWMf5FLWfdLA" aggregation="shared" association="_UZOyQDnDEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Y3avoGNWEeio9amveq0yWQ" annotatedElement="_UZQncjnDEeiWMf5FLWfdLA">
            <body>The scaling aspects supported by this DF of the VNF. scalingAspect shall be present if the VNF supports scaling.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_UZR1kDnDEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UZScoDnDEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_8qGysD5xEeijbdkIlrq2uQ" name="_vduProfile" type="_ISONYDOSEeiHat9KcP8uWA" aggregation="shared" association="_8qDIUD5xEeijbdkIlrq2uQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9529AGNVEeio9amveq0yWQ" annotatedElement="_8qGysD5xEeijbdkIlrq2uQ">
            <body>Describes additional instantiation data for the VDUs used in this flavor.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_8qIA0D5xEeijbdkIlrq2uQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_8qIn4D5xEeijbdkIlrq2uQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZqRl0isNEemS0_wZSU3sbA" name="vnfIndicator" type="_tEnEsDTSEeiwQ6KPLHcy4g" association="_ZqPJkCsNEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sXkLYCsNEemS0_wZSU3sbA" annotatedElement="_ZqRl0isNEemS0_wZSU3sbA">
            <body>Declares the VNF indicators that are supported by this VNF (specific to this DF).</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZqTbACsNEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ZqUCECsNEemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OylAkNgaEeq7hYQNMy9zpg" name="supportedVnfInterface" type="_vfWakMbIEeqGwZoAtvAq1A" aggregation="composite" association="_OybPkNgaEeq7hYQNMy9zpg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5PamkNs5Eeqc48iFXy8U7A">
            <body>Indicates which interfaces the VNF produces and provides additional details on how to access the interface endpoints.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YtVjUOieEeqBDMHZYEWtvQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ZdRLcOieEeqBDMHZYEWtvQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_TWqDsg8YEeuBquWJMTL0qg" name="mciopProfile" type="_ULe1IFBOEeu9q4B_TIiAOQ" aggregation="composite" association="_TWnncA8YEeuBquWJMTL0qg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MhX5QATYEeuUzLXQ51gGgw">
            <body>Describes additional instantiation data for the MCIOPs used in this deployment flavour.&#xD;
This attribute shall be present if the DF references (via the vduProfile) containerized workloads based on a MCIOP.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_TWtHAA8YEeuBquWJMTL0qg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_TWtHAQ8YEeuBquWJMTL0qg" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_AmzWYDQtEeixv_sLOod4lQ" name="VnfExtCpd ">
        <ownedComment xmi:type="uml:Comment" xmi:id="_096QYDR0Eem2n8bBHelJyw" annotatedElement="_AmzWYDQtEeixv_sLOod4lQ">
          <body>A VnfExtCpd is a type of Cpd and describes an external interface, a.k.a external CP, exposed by this VNF enabling connection with a VL.&#xD;
When the VnfExtCpd is mapped to a VduCpd, the values for the attributes type, subType and description shall be identical for both elements.&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lZbOMCsFEemS0_wZSU3sbA" name="_intVirtualLinkDesc" type="_-5-w8Cr9EemS0_wZSU3sbA" association="_lZYx8CsFEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4Tc08Ns2Eeqc48iFXy8U7A">
            <body>References the internal Virtual Link Descriptor (VLD) to which CPs instantiated from this external CP Descriptor (CPD) connect.
One and only one of the following attributes shall be present: intVirtualLinkDesc or intCpd or vipCpd.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_lZhU0CsFEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_lZuJICsFEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uf0ZQDdVEeiIfPeSAqyGdQ" name="_intCpd" type="_zOfv8DQVEeixv_sLOod4lQ" association="_ufxV8DdVEeiIfPeSAqyGdQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_8z1zEJwfEeiPD5fN_oRNAg" annotatedElement="_uf0ZQDdVEeiIfPeSAqyGdQ">
            <body>References the internal VDU CPD which is used to instantiate internal CPs. These internal CPs are, in turn, exposed as external CPs defined by this external CPD.&#xD;One and only one of the following attributes shall be present: intVirtualLinkDesc or intCpd or vipCpd.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7fXY4DdVEeiIfPeSAqyGdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7facMDdVEeiIfPeSAqyGdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_RzM-AMYIEeqGwZoAtvAq1A" name="vipCpd">
          <ownedComment xmi:type="uml:Comment" xmi:id="_p5IwcNgVEeq7hYQNMy9zpg" annotatedElement="_RzM-AMYIEeqGwZoAtvAq1A">
            <body>References the VIP CPD which is used to instantiate CPs to hold virtual IP addresses. These CPs are, in turn, exposed as external CPs defined by this external CPD. One and only one of the following attributes shall be present: intVirtualLinkDesc or intCpd or vipCpd .</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YwPooMYIEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_hzG3ETm7EeiWMf5FLWfdLA" name="virtualNetworkInterfaceRequirements" type="_8BUXwDm4EeiWMf5FLWfdLA" aggregation="composite" association="_hzDMsDm7EeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Ml1voGNeEeio9amveq0yWQ" annotatedElement="_hzG3ETm7EeiWMf5FLWfdLA">
            <body>Specifies requirements on a virtual network interface realising the CPs instantiated from this CPD.&#xD;
&#xD;
NOTE: In case of referencing an intCpd via its identifier, the virtualNetworkInterfaceRequirements attribute of the referenced intCpd applies.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hzobgDm7EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hzyMgDm7EeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ogGVUATVEeuUzLXQ51gGgw" name="virtualCpd">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1kupQATVEeuUzLXQ51gGgw" annotatedElement="_ogGVUATVEeuUzLXQ51gGgw">
            <body>References the Virtual CPD which is used to describe a virtual connection point allowing to access a set of VNFC instances (based on their respective VDUs). </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_tm9hcATVEeuUzLXQ51gGgw"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_tEnEsDTSEeiwQ6KPLHcy4g" name="VnfIndicator">
        <ownedComment xmi:type="uml:Comment" xmi:id="_2u8xIDTUEeiwQ6KPLHcy4g" annotatedElement="_tEnEsDTSEeiwQ6KPLHcy4g">
          <body>The VnfIndicator information element defines the indicator the VNF supports.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_a5biQDg2EeiOYfGHew0BGg" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nC-uADg2EeiOYfGHew0BGg" annotatedElement="_a5biQDg2EeiOYfGHew0BGg">
            <body>Unique identifier.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_btdAMDg2EeiOYfGHew0BGg" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_y7yvEDg2EeiOYfGHew0BGg" annotatedElement="_btdAMDg2EeiOYfGHew0BGg">
            <body>The human readable name of the VnfIndicator.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_t2_YcDg2EeiOYfGHew0BGg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_t3E4ADg2EeiOYfGHew0BGg" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_cggNwDg2EeiOYfGHew0BGg" name="indicatorValue">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4B_z4Dg2EeiOYfGHew0BGg" annotatedElement="_cggNwDg2EeiOYfGHew0BGg">
            <body>Defines the allowed values or value ranges of this indicator.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_2UjaoDg2EeiOYfGHew0BGg" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_2UoTIDg2EeiOYfGHew0BGg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_dP31MDg2EeiOYfGHew0BGg" name="source" type="_EUC2YDnOEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_-pIf8Dg2EeiOYfGHew0BGg" annotatedElement="_dP31MDg2EeiOYfGHew0BGg">
            <body>Describe the source of the indicator. This tells the consumer where to send the subscription request.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_oFQM8Dd-EeiIfPeSAqyGdQ" name="VirtualLinkDescFlavour">
        <ownedComment xmi:type="uml:Comment" xmi:id="_dcvukFqbEeiTzriVSbKglg" annotatedElement="_oFQM8Dd-EeiIfPeSAqyGdQ">
          <body>The VirtualLinkDescFlavour describes additional instantiation data for a given internal VL used in a DF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_v0nsYDd-EeiIfPeSAqyGdQ" name="qos" type="_m4u3AC41EemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_28zsQDgcEeiOYfGHew0BGg" annotatedElement="_v0nsYDd-EeiIfPeSAqyGdQ">
            <body>QoS of the VL.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zWK8wDgcEeiOYfGHew0BGg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zWS4kDgcEeiOYfGHew0BGg" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uXGXkDnFEeiWMf5FLWfdLA" name="flavourId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0161IDnFEeiWMf5FLWfdLA" annotatedElement="_uXGXkDnFEeiWMf5FLWfdLA">
            <body>Identifies a flavour within a VnfVirtualLinkDesc.&#xD;
&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_8BUXwDm4EeiWMf5FLWfdLA" name="VirtualNetworkInterfaceRequirements">
        <ownedComment xmi:type="uml:Comment" xmi:id="_DIyJsDm5EeiWMf5FLWfdLA" annotatedElement="_8BUXwDm4EeiWMf5FLWfdLA">
          <body>This class specifies requirements on a virtual network interface.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_H9PXMDm5EeiWMf5FLWfdLA" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_rghVsEbvEei7eo5RdnNiBQ" annotatedElement="_H9PXMDm5EeiWMf5FLWfdLA">
            <body>Provides a human readable name for the requirement.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GyW7oDm9EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GyuIADm9EeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_H9RMYDm5EeiWMf5FLWfdLA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_uPFNsEbvEei7eo5RdnNiBQ" annotatedElement="_H9RMYDm5EeiWMf5FLWfdLA">
            <body>Provides a human readable description of the requirement.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Lb1BIDm9EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_LcK_YDm9EeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_H9SagDm5EeiWMf5FLWfdLA" name="supportMandatory">
          <ownedComment xmi:type="uml:Comment" xmi:id="_wnOw0EbvEei7eo5RdnNiBQ" annotatedElement="_H9SagDm5EeiWMf5FLWfdLA">
            <body>Indicates whether fulfilling the constraint is mandatory (TRUE) for successful operation or desirable (FALSE).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_H9TooDm5EeiWMf5FLWfdLA" name="networkInterfaceRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_y0Oz4EbvEei7eo5RdnNiBQ" annotatedElement="_H9TooDm5EeiWMf5FLWfdLA">
            <body>The network interface requirements. An element from an array of key-value pairs that articulate the network interface deployment requirements</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_VYZ_ADm9EeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_VYvWMDm9EeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_5zqHUEdMEemb9YiEz89e4g" name="_nicIoRequirements" type="_Lpu5wCo9EemS0_wZSU3sbA" association="_5zfvQEdMEemb9YiEz89e4g">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Pvj98EdNEemb9YiEz89e4g" annotatedElement="_5zqHUEdMEemb9YiEz89e4g">
            <body>This references (couples) the CPD with any logical node I/O requirements (for network devices) that may have been created. Linking these attributes is necessary so that so that I/O requirements that need to be articulated at the logical node level can be associated with the network interface requirements associated with the CPD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5ztKoEdMEemb9YiEz89e4g"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5zu_0EdMEemb9YiEz89e4g" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_6C8F4DnAEeiWMf5FLWfdLA" name="InstantiationLevel">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Edh1cDnBEeiWMf5FLWfdLA" annotatedElement="_6C8F4DnAEeiWMf5FLWfdLA">
          <body>The InstantiationLevel class describes a given level of resources to be instantiated within a DF in term of the number of VNFC instances to be created from each VDU.&#xD;
All the VDUs referenced in the level shall be part of the corresponding DF and their number shall be within the range (min/max) for this DF.&#xD;
&#xD;
 &#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Y6Fm8DnGEeiWMf5FLWfdLA" name="levelId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_fzg84DnGEeiWMf5FLWfdLA" annotatedElement="_Y6Fm8DnGEeiWMf5FLWfdLA">
            <body>Uniquely identifies a level with the DF.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_jViSIDnGEeiWMf5FLWfdLA" name="description" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_p6Lq4DnGEeiWMf5FLWfdLA" annotatedElement="_jViSIDnGEeiWMf5FLWfdLA">
            <body>Human readable description of the level.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_f1tDUDnIEeiWMf5FLWfdLA" name="scaleInfo" visibility="public" type="_EYaAsDnIEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qMaYcDnIEeiWMf5FLWfdLA" annotatedElement="_f1tDUDnIEeiWMf5FLWfdLA">
            <body>Represents for each aspect the scale level that corresponds to this instantiation level. scaleInfo shall be present if the VNF supports scaling.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_mNS3gDnIEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_mN0b8DnIEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PJk5sjnHEeiWMf5FLWfdLA" name="_vduLevel" type="_DZsyMDnHEeiWMf5FLWfdLA" aggregation="composite" association="_PJjEgDnHEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xYCLoFnHEeiE8vEL41trfQ" annotatedElement="_PJk5sjnHEeiWMf5FLWfdLA">
            <body>Indicates the number of instance of this VDU to deploy for this level.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PJmu4DnHEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PJmu4TnHEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_psa4QJmYEeibE8EgApNciA" name="virtualLinkBitRateLevel" type="_0RG8kEcmEei7eo5RdnNiBQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_G88b8JweEeiPD5fN_oRNAg" annotatedElement="_psa4QJmYEeibE8EgApNciA">
            <body>Specifies bitrate requirements applicable to virtual links created from particular virtual link descriptors for this level.&#xD;
&#xD;
NOTE: If not present, it is assumed that the bitrate requirements can be derived from those specified in the VduCpd instances applicable to the internal VL. If present in both the InstantiationLevel and the VduCpd instances applicable to the internal VL, the highest value takes precedence.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5Cj70JmYEeibE8EgApNciA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5CrQkJmYEeibE8EgApNciA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_DZsyMDnHEeiWMf5FLWfdLA" name="VduLevel">
        <ownedComment xmi:type="uml:Comment" xmi:id="_t2W2wFqaEeiTzriVSbKglg" annotatedElement="_DZsyMDnHEeiWMf5FLWfdLA">
          <body>The VduLevel information element indicates for a given VDU in a given level the number of instances to deploy.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Eu3jcDnJEeiWMf5FLWfdLA" name="numberOfInstances" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Lc1QQDnJEeiWMf5FLWfdLA" annotatedElement="_Eu3jcDnJEeiWMf5FLWfdLA">
            <body>Number of instances of VNFC based on this VDU to deploy for an instantiation level or for a scaling delta.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lIdLMivPEemS0_wZSU3sbA" name="_vduId" type="_e5WnwDOREeiHat9KcP8uWA" association="_lIaH4CvPEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_G5Cw0CvQEemS0_wZSU3sbA" annotatedElement="_lIdLMivPEemS0_wZSU3sbA">
            <body>Uniquely identifies a VDU.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_lIfAYCvPEemS0_wZSU3sbA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_lIfAYSvPEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_0YVYQMYDEeqGwZoAtvAq1A" name="vipCpd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_ij5bYMYFEeqGwZoAtvAq1A">
          <body>A VipCpd is a type of Cpd and describes a requirement to allocate one or a set of virtual IP addresses.&#xD;A VipCpd inherits from the Cpd Class . All attributes of the Cpd are also attributes of the VipCpd.&#xD;When intCpds are indicated, instances of VduCps created from those intCpds share the addresses created from the VipCpd.&#xD;When vnfExtCpds are indicated, instances of VnfExtCps created from those vnfExtCpds share the addresses created from the VipCpd.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_KtQWYMYFEeqGwZoAtvAq1A">
          <general xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_o_lFYMYFEeqGwZoAtvAq1A" name="intCpd">
          <ownedComment xmi:type="uml:Comment" xmi:id="_7tqckNs3Eeqc48iFXy8U7A">
            <body>References the internal VDU CPD which is used to instantiate internal CPs. These internal CPs share the virtual IP addresses allocated when a VipCp instance is created from the VipCpd.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Jt45MMYHEeqGwZoAtvAq1A"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Jt9xsMYHEeqGwZoAtvAq1A" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-kf_YMYFEeqGwZoAtvAq1A" name="vnfExtCpd">
          <ownedComment xmi:type="uml:Comment" xmi:id="_EbXMgNs4Eeqc48iFXy8U7A">
            <body>References the VNF external CPD which is used to instantiate external CPs. These external CPs share the virtual IP addresses allocated when a VipCp instance is created from the VipCpd.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_LmBfgMYHEeqGwZoAtvAq1A"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_LmD7wMYHEeqGwZoAtvAq1A" value="*"/>
        </ownedAttribute>
        <nestedClassifier xmi:type="uml:Enumeration" xmi:id="_1UpocOCPEeq4TaxvD15GLA" name="vipFunction">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nfYFQOCQEeq4TaxvD15GLA">
            <body>It indicates the function the virtual IP address is used for.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_GluusOCQEeq4TaxvD15GLA" name="HIGH_AVAILABILITY"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_JZsEEOCQEeq4TaxvD15GLA" name="LOAD_BALANCING"/>
        </nestedClassifier>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_fMPCUES6EeiVGPeZpaYNtQ" name="VnfExtCp">
        <ownedComment xmi:type="uml:Comment" xmi:id="_sxbFoES6EeiVGPeZpaYNtQ" annotatedElement="_fMPCUES6EeiVGPeZpaYNtQ">
          <body>Describes an external CP exposed by a VNF.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_3Dbg8ES6EeiVGPeZpaYNtQ">
          <general xmi:type="uml:Class" href="Common.uml#_8naVoES0EeiVGPeZpaYNtQ"/>
        </generalization>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_jH_PgF3PEeiwL5tPgFMcjQ" name="VnfInstance">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Qzli4F4CEei-d9bwZwcVEw" annotatedElement="_jH_PgF3PEeiwL5tPgFMcjQ">
          <body>An implementation of an NF that can be deployed on a Network Function Virtualisation Infrastructure (NFVI).</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_pAekkEUIEemWRYeHGX88Yw">
          <general xmi:type="uml:Class" href="Nf.uml#_VtzSoESyEeiVGPeZpaYNtQ"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_xSnkYF3eEeiwL5tPgFMcjQ" name="vnfProductName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5gjPIF3eEeiwL5tPgFMcjQ" annotatedElement="_xSnkYF3eEeiwL5tPgFMcjQ">
            <body>name to identify the VNF Product, invariant for the VNF Product lifetime</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zhxjkF3eEeiwL5tPgFMcjQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zh6GcF3eEeiwL5tPgFMcjQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HY63sF3gEeiwL5tPgFMcjQ" name="vnfProvider">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ODWvYF3gEeiwL5tPgFMcjQ" annotatedElement="_HY63sF3gEeiwL5tPgFMcjQ">
            <body>provider of the VNF model</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_D0XjIF3xEeiwL5tPgFMcjQ" name="vnfSoftwareVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_JKUUIF3xEeiwL5tPgFMcjQ" annotatedElement="_D0XjIF3xEeiwL5tPgFMcjQ">
            <body>Software version of the VNF. This is changed when there is any change to the software that is included in the VNF package</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_b9AvYF33EeiwL5tPgFMcjQ" name="vnfPkgId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qk93QF33EeiwL5tPgFMcjQ" annotatedElement="_b9AvYF33EeiwL5tPgFMcjQ">
            <body>identifier of the specific VNF package on which the VNF instance is based</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_yX0vkF33EeiwL5tPgFMcjQ" name="zone">
          <ownedComment xmi:type="uml:Comment" xmi:id="_2-FJAF33EeiwL5tPgFMcjQ" annotatedElement="_yX0vkF33EeiwL5tPgFMcjQ">
            <body>availability zone information of the VNF instance</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2BvAEF34EeiwL5tPgFMcjQ" name="operationalStatus" type="_JqA_UHPTEeiuFfjlON-CuQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_66NK4F34EeiwL5tPgFMcjQ" annotatedElement="_2BvAEF34EeiwL5tPgFMcjQ">
            <body>indicator for whether the resource is considered operational. Valid values are in-service-path and out-of-service-path.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4tZ8IF34EeiwL5tPgFMcjQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4tifAF34EeiwL5tPgFMcjQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_B2EJwF35EeiwL5tPgFMcjQ" name="orchestrationStatus" type="_5--AQJdUEei-sOl6ywWHlg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_GtYeAF35EeiwL5tPgFMcjQ" annotatedElement="_B2EJwF35EeiwL5tPgFMcjQ">
            <body>whether the VNF instance is instantiated</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Pjwo0F35EeiwL5tPgFMcjQ" name="oamlpv4Address">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WAKrkF35EeiwL5tPgFMcjQ" annotatedElement="_Pjwo0F35EeiwL5tPgFMcjQ">
            <body>oam ip address, ipv4</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_S169IF35EeiwL5tPgFMcjQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_S1_1oF35EeiwL5tPgFMcjQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_s23WgF35EeiwL5tPgFMcjQ" name="oamlpv6Address">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9wtBcF35EeiwL5tPgFMcjQ" annotatedElement="_s23WgF35EeiwL5tPgFMcjQ">
            <body>oam ip address, ipv6</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7NWT4F35EeiwL5tPgFMcjQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7NbMYF35EeiwL5tPgFMcjQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_t2N6sF35EeiwL5tPgFMcjQ" name="instantiatedVnfInfo">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iXMAsF37Eei-d9bwZwcVEw" annotatedElement="_t2N6sF35EeiwL5tPgFMcjQ">
            <body>information specific to an instantiated VNF instance, e.g., vm information</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fS6-cF37Eei-d9bwZwcVEw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fTKPAF37Eei-d9bwZwcVEw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_u8wsAF35EeiwL5tPgFMcjQ" name="inMaint">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xP6IcF37Eei-d9bwZwcVEw" annotatedElement="_u8wsAF35EeiwL5tPgFMcjQ">
            <body>whether the VNF instance is in maintenance mode, if yes, DCAE will not observe alarms/traps, etc.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_tiO80F37Eei-d9bwZwcVEw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_tic_QF37Eei-d9bwZwcVEw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wvGzYF35EeiwL5tPgFMcjQ" name="closedLoopEnabled">
          <ownedComment xmi:type="uml:Comment" xmi:id="_AtuhUF38Eei-d9bwZwcVEw" annotatedElement="_wvGzYF35EeiwL5tPgFMcjQ">
            <body>Indicates whether the closed loop function is enabled or disabled.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9r9ZcF37Eei-d9bwZwcVEw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9sF8UF37Eei-d9bwZwcVEw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_xjSpYF35EeiwL5tPgFMcjQ" name="encryptedAccessFlag">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DmT4AF38Eei-d9bwZwcVEw" annotatedElement="_xjSpYF35EeiwL5tPgFMcjQ">
            <body>whether this VNF is accessed using SSH</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FVaeIF38Eei-d9bwZwcVEw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_FVmrYF38Eei-d9bwZwcVEw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4zoYkF37Eei-d9bwZwcVEw" name="vnfConfigurableProperty">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LuL-EF38Eei-d9bwZwcVEw">
            <body>indicator for whether autoHeal and autoScale is enabled</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OBk9AF38Eei-d9bwZwcVEw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OBrDoF38Eei-d9bwZwcVEw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lfpNIF4AEei-d9bwZwcVEw" name="vnfNamingPolicyId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_F-oBwHPKEeiuFfjlON-CuQ" annotatedElement="_lfpNIF4AEei-d9bwZwcVEw">
            <body>Identifier of the policy which has the naming logic for this VNF instance</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mlc-oF4AEei-d9bwZwcVEw" name="vnfHomingPolicyId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_KAPdEHPKEeiuFfjlON-CuQ" annotatedElement="_mlc-oF4AEei-d9bwZwcVEw">
            <body>Identifier of the policy which provides homing conditions.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HAitoF-FEeiaLPXj8My4aQ" name="_vnfc" type="_OpdBwF9vEeiaLPXj8My4aQ" aggregation="composite" association="_HAfqUF-FEeiaLPXj8My4aQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kJCK4HPKEeiuFfjlON-CuQ" annotatedElement="_HAitoF-FEeiaLPXj8My4aQ">
            <body>Relatonship to the VNF components that are part of this VNF.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HAjUsV-FEeiaLPXj8My4aQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HAjUsl-FEeiaLPXj8My4aQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PG3MwGkCEeip9umi7zNprw" name="_vnfd" type="_aaEZADOREeiHat9KcP8uWA" association="_PG0wgGkCEeip9umi7zNprw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gevqcHPKEeiuFfjlON-CuQ" annotatedElement="_PG3MwGkCEeip9umi7zNprw">
            <body>Relationship to the VNF descriptor</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PG4a4GkCEeip9umi7zNprw" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PG5B8GkCEeip9umi7zNprw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_inPiUH7eEei4v5WRHqfM1Q" name="_vnfvirtuallink" type="_TuRYYH7dEei4v5WRHqfM1Q" aggregation="shared" association="_inMfAH7eEei4v5WRHqfM1Q">
          <ownedComment xmi:type="uml:Comment" xmi:id="_jbazYJWqEeiBQt0DCQoFTw" annotatedElement="_inPiUH7eEei4v5WRHqfM1Q">
            <body>Relationship to VnfVirtualLink</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_inQwcH7eEei4v5WRHqfM1Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_inQwcX7eEei4v5WRHqfM1Q" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_me91EBidEemVYPRf16WzdQ" name="veVnfmVnfInterface">
          <ownedComment xmi:type="uml:Comment" xmi:id="_C8x5gBieEemVYPRf16WzdQ" annotatedElement="_me91EBidEemVYPRf16WzdQ">
            <body>IP address between VNF and VNFM.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xhjYwBidEemVYPRf16WzdQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_xhvmABidEemVYPRf16WzdQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_65atkAe_EeqgQMsQBX3k5g" name="_licensekeyinstance">
          <type xmi:type="uml:Class" href="License.uml#_D_LXMN3xEei-jeeHUjfpLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7SBa0Ae_EeqgQMsQBX3k5g"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7SCB4Ae_EeqgQMsQBX3k5g" value="1"/>
          <association xmi:type="uml:Association" href="License.uml#_65WcIAe_EeqgQMsQBX3k5g"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IKU4EAfCEeqAlrMuwBoC7Q" name="_entitlementinstance">
          <type xmi:type="uml:Class" href="License.uml#_QG4ysP1oEeisxOMTY1eUug"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IKWtQAfCEeqAlrMuwBoC7Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IKWtQQfCEeqAlrMuwBoC7Q" value="1"/>
          <association xmi:type="uml:Association" href="License.uml#_IKP_kAfCEeqAlrMuwBoC7Q"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_B2hDUF-GEeiaLPXj8My4aQ" name="VnfcCp">
        <generalization xmi:type="uml:Generalization" xmi:id="_NomTQH7gEeifJIHxnlj6Cg">
          <general xmi:type="uml:Class" href="Common.uml#_8naVoES0EeiVGPeZpaYNtQ"/>
        </generalization>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_OpdBwF9vEeiaLPXj8My4aQ" name="Vnfc">
        <ownedComment xmi:type="uml:Comment" xmi:id="_RCJ2AGN2Eeio9amveq0yWQ" annotatedElement="_OpdBwF9vEeiaLPXj8My4aQ">
          <body>An internal component of a VNF providing a VNF Provider a defined sub-set of that VNF's functionality, with the main characteristic that a single instance of this component maps 1:1 against a single Virtualisation Container.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_dWIRkF9vEeiaLPXj8My4aQ" name="vnfcInstanceId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LPME4F9wEeiaLPXj8My4aQ" annotatedElement="_dWIRkF9vEeiaLPXj8My4aQ">
            <body>identifier of the NFC instance</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fIfAAF9vEeiaLPXj8My4aQ" name="nfcNamingCode">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PNyocF9wEeiaLPXj8My4aQ" annotatedElement="_fIfAAF9vEeiaLPXj8My4aQ">
            <body>short code of the NFC instance</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_S6nfgF9wEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_S6wpcF9wEeiaLPXj8My4aQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fpzkYF9vEeiaLPXj8My4aQ" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YYzmgF9wEeiaLPXj8My4aQ" annotatedElement="_fpzkYF9vEeiaLPXj8My4aQ">
            <body>description of the NFC instance</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_V5E0sF9wEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_V5K7UF9wEeiaLPXj8My4aQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_gjdwQF9vEeiaLPXj8My4aQ" name="vdudId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_AsnqwF-AEeiaLPXj8My4aQ" annotatedElement="_gjdwQF9vEeiaLPXj8My4aQ">
            <body>identifier of the model of the NFC instance</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lCv_AF9vEeiaLPXj8My4aQ" name="l3InterfaceIpv4AddressList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_IWEIYF-AEeiaLPXj8My4aQ" annotatedElement="_lCv_AF9vEeiaLPXj8My4aQ">
            <body>layer-3 interface addresses, ipv4</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GJOdYF-AEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GJUkAF-AEeiaLPXj8My4aQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mDlw8F9vEeiaLPXj8My4aQ" name="l3InterfaceIpv6AddressList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ur-d4F-BEeiaLPXj8My4aQ" annotatedElement="_mDlw8F9vEeiaLPXj8My4aQ">
            <body>layer-3 interface addresses, ipv6</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MbfFoF-AEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_MblMQF-AEeiaLPXj8My4aQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_m9TAIF9vEeiaLPXj8My4aQ" name="vnfcState">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0Zbv8F-BEeiaLPXj8My4aQ" annotatedElement="_m9TAIF9vEeiaLPXj8My4aQ">
            <body>operating status of the VM&#xD;
 valid value example: STARTED (POWER_ON), STOPPED (POWER_OFF)</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_1tJakF-BEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_1tQIQF-BEeiaLPXj8My4aQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_utZfYF9vEeiaLPXj8My4aQ" name="inMaint">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WNe5QF-CEeiaLPXj8My4aQ" annotatedElement="_utZfYF9vEeiaLPXj8My4aQ">
            <body>whether the NFC instance is in maintenance mode, if yes, DCAE will not observe alarms/traps, etc.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_T1a1sF-CEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_T1g8UF-CEeiaLPXj8My4aQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vnd68F9vEeiaLPXj8My4aQ" name="isClosedLoopDisabled">
          <ownedComment xmi:type="uml:Comment" xmi:id="_cJb6UF-CEeiaLPXj8My4aQ" annotatedElement="_vnd68F9vEeiaLPXj8My4aQ">
            <body>whether closed loop function is enabled</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hKLQUF-CEeiaLPXj8My4aQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hKTzMF-CEeiaLPXj8My4aQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_whdeAF9vEeiaLPXj8My4aQ" name="vnfcInstanceName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PbB1UHPLEeiuFfjlON-CuQ" annotatedElement="_whdeAF9vEeiaLPXj8My4aQ">
            <body>An intelligent or human readable name of the vnfc instance.  Multiple names are possible.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qePV8JdXEei-sOl6ywWHlg" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qeXRwJdXEei-sOl6ywWHlg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OXq2wV-GEeiaLPXj8My4aQ" name="_vnfcCp" type="_B2hDUF-GEeiaLPXj8My4aQ" aggregation="composite" association="_OXqPsF-GEeiaLPXj8My4aQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UQr8sHPLEeiuFfjlON-CuQ" annotatedElement="_OXq2wV-GEeiaLPXj8My4aQ">
            <body>Reference to the connection points of the vnfc </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OXvvQF-GEeiaLPXj8My4aQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OXyLgF-GEeiaLPXj8My4aQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Ng78kGN3Eeio9amveq0yWQ" name="vnfcNamingPolicyId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Xdw8sHPLEeiuFfjlON-CuQ" annotatedElement="_Ng78kGN3Eeio9amveq0yWQ">
            <body>Identifier of the policy which has the naming logic for this VNFC instance</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lYH-sGN4Eeio9amveq0yWQ" name="nfcFunction">
          <ownedComment xmi:type="uml:Comment" xmi:id="_e28JsHPLEeiuFfjlON-CuQ" annotatedElement="_lYH-sGN4Eeio9amveq0yWQ">
            <body>English description of network function component that the specific VNFC deployment is providing.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_oQAKwGN4Eeio9amveq0yWQ" name="operationalStatus" type="_JqA_UHPTEeiuFfjlON-CuQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iLS2YHPLEeiuFfjlON-CuQ" annotatedElement="_oQAKwGN4Eeio9amveq0yWQ">
            <body> indicator for whether the resource is considered operational. Valid values are in-service-path and out-of-service-path.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2Ykn8GN4Eeio9amveq0yWQ" name="orchestrationStatus" type="_5--AQJdUEei-sOl6ywWHlg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_mTJckHPLEeiuFfjlON-CuQ" annotatedElement="_2Ykn8GN4Eeio9amveq0yWQ">
            <body>whether the VNFC instance is instantiated</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_WbPTMGN5Eeio9amveq0yWQ" name="closedLoopStatus">
          <ownedComment xmi:type="uml:Comment" xmi:id="_oQc2wHPLEeiuFfjlON-CuQ" annotatedElement="_WbPTMGN5Eeio9amveq0yWQ">
            <body>Whether closed loop capabilities are enabled for this or not.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tZ9usGmNEeiIM-XECFR2Pw" name="_vdu" type="_e5WnwDOREeiHat9KcP8uWA" association="_tY4JkGmNEeiIM-XECFR2Pw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_r4vMEHPLEeiuFfjlON-CuQ" annotatedElement="_tZ9usGmNEeiIM-XECFR2Pw">
            <body>Reference to the VDU</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_taIt0GmNEeiIM-XECFR2Pw" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_taO0cGmNEeiIM-XECFR2Pw" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_TuRYYH7dEei4v5WRHqfM1Q" name="VnfVirtualLink">
        <generalization xmi:type="uml:Generalization" xmi:id="_Fsnq8IUREeiRGZJrXkgR0w">
          <general xmi:type="uml:Class" href="Common.uml#_Tw5PIES0EeiVGPeZpaYNtQ"/>
        </generalization>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_xVaLUJs3EeiPBvbfaqSLYg" name="Anfd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_2qM6sKY4Eeily5uFlujj3Q" annotatedElement="_xVaLUJs3EeiPBvbfaqSLYg">
          <body>An Anfd is the   (Allotted Network Function) is a template which describes an ANF in terms of deploymnet and operational behaviour requiremnets.  &#xD;
</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_7DhPYJs3EeiPBvbfaqSLYg">
          <general xmi:type="uml:Class" href="Nf.uml#_O385oJssEeiPBvbfaqSLYg"/>
        </generalization>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_0lvvQDgREeiOYfGHew0BGg" name="VirtualLinkProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="__mm0oDgREeiOYfGHew0BGg" annotatedElement="_0lvvQDgREeiOYfGHew0BGg">
          <body>The VirtualLinkProfile describes additional instantiation data for a given VL used in a DF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PYj-ECsQEemS0_wZSU3sbA" name="virtualLinkProfileId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_XZRFICsQEemS0_wZSU3sbA" annotatedElement="_PYj-ECsQEemS0_wZSU3sbA">
            <body>Uniquely identifies this VirtualLinkProfile class</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uA9FMDgUEeiOYfGHew0BGg" name="localAffinityOrAntiAffinityRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3SRfkDgUEeiOYfGHew0BGg" annotatedElement="_uA9FMDgUEeiOYfGHew0BGg">
            <body>Specifies affinity or anti-affinity rules applicable between the VLs based on this VnfVirtualLinkDesc.&#xD;
&#xD;
When the cardinality is greater than 1, both affinity rule(s) and anti-affinity rule(s) with different scopes are applicable to the VLs based on this VnfVirtualLinkDesc.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_7hn1IDd1EeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_0ph7sDgUEeiOYfGHew0BGg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_0puwADgUEeiOYfGHew0BGg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2-_hwDgVEeiOYfGHew0BGg" name="maxBitRateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_n6_2wDgYEeiOYfGHew0BGg" annotatedElement="_2-_hwDgVEeiOYfGHew0BGg">
            <body>Specifies the minimum bitrate requirements for a VL instantiated according to this profile.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_s7WyQDgYEeiOYfGHew0BGg" name="minBitRateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0SpI4DgYEeiOYfGHew0BGg" annotatedElement="_s7WyQDgYEeiOYfGHew0BGg">
            <body>Specifies the minimum bitrate requirements for a VL instantiated according to this profile.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uohQ8jgTEeiOYfGHew0BGg" name="_flavourId" type="_oFQM8Dd-EeiIfPeSAqyGdQ" aggregation="shared" association="_uogp4DgTEeiOYfGHew0BGg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Nj634FqfEeiTzriVSbKglg" annotatedElement="_uohQ8jgTEeiOYfGHew0BGg">
            <body>Identifies a flavour within the VnfVirtualLinkDesc.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ix8YIisREemS0_wZSU3sbA" name="_affinityOrAntiAffinityGroupId" association="_ix6i8CsREemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_W37AsCsSEemS0_wZSU3sbA" annotatedElement="_ix8YIisREemS0_wZSU3sbA">
            <body>Identifies an affinity or anti-affinity group the VLs instantiated according to the VlProfile belong to.&#xD;
NOTE :  Each identifier references an affinity or anti-affinity group which expresses affinity or anti-affinity relationship between the VL(s) using this VirtualLinkProfile and the VL(s) using other VirtualLinkProfile(s) in the same group.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_0AbUYDnBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ix9mQCsREemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ix-NUCsREemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GWe3YSsBEemS0_wZSU3sbA" name="_vnfVirtualLinkDescId" type="_-5-w8Cr9EemS0_wZSU3sbA" association="_GWbNACsBEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_l5RIsCsBEemS0_wZSU3sbA" annotatedElement="_GWe3YSsBEemS0_wZSU3sbA">
            <body>Uniquely references a VLD.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GWgskCsBEemS0_wZSU3sbA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GWhToCsBEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_5LWhwBx5Eemit6R65X1VNQ" name="virtualLinkProtocolData" type="_BAt7gBx6Eemit6R65X1VNQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iqS6MBx6Eemit6R65X1VNQ" annotatedElement="_5LWhwBx5Eemit6R65X1VNQ">
            <body>Specifies the protocol data for a VL instantiated according to this profile. Cardinality 0 is used when no protocol data needs to be specified.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9M4dgBx5Eemit6R65X1VNQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9NGf8Bx5Eemit6R65X1VNQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_DlOpkDnDEeiWMf5FLWfdLA" name="ScalingAspect">
        <ownedComment xmi:type="uml:Comment" xmi:id="_PNdQ8DnDEeiWMf5FLWfdLA" annotatedElement="_DlOpkDnDEeiWMf5FLWfdLA">
          <body>The ScalingAspect class describes the details of an aspect used for horizontal scaling.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_O35QACvLEemS0_wZSU3sbA" name="id" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_XtuBMCvLEemS0_wZSU3sbA" annotatedElement="_O35QACvLEemS0_wZSU3sbA">
            <body>Unique identifier of this aspect in the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZpVZUCvLEemS0_wZSU3sbA" name="name" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gEHEYCvLEemS0_wZSU3sbA" annotatedElement="_ZpVZUCvLEemS0_wZSU3sbA">
            <body>Human readable name of the aspect.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_hig8ECvLEemS0_wZSU3sbA" name="description" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ojqDkCvLEemS0_wZSU3sbA" annotatedElement="_hig8ECvLEemS0_wZSU3sbA">
            <body>Human readable description of the aspect.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_1WdwcDzFEeiWMf5FLWfdLA" name="Vnffg">
        <ownedComment xmi:type="uml:Comment" xmi:id="_1WdwcTzFEeiWMf5FLWfdLA" annotatedElement="_1WdwcDzFEeiWMf5FLWfdLA">
          <body>A graph of logical links connecting NF nodes,where at least one node is a VNF, for the purpose of describing traffic flow between these network functions </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WdwcjzFEeiWMf5FLWfdLA" name="vnffgId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WdwczzFEeiWMf5FLWfdLA" annotatedElement="_1WdwcjzFEeiWMf5FLWfdLA">
            <body>Identier of this Vnffg class.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WdwdDzFEeiWMf5FLWfdLA" name="nfId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WdwdTzFEeiWMf5FLWfdLA" annotatedElement="_1WdwdDzFEeiWMf5FLWfdLA">
            <body>Identifier of the constituent NFs of the VNFFG</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WdweDzFEeiWMf5FLWfdLA" name="virtualLinkId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WdweTzFEeiWMf5FLWfdLA" annotatedElement="_1WdweDzFEeiWMf5FLWfdLA">
            <body>Identifier(s) of the constituent VL instance(s) of the VNFFG.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_1WdwejzFEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_1WeXgDzFEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WeXgTzFEeiWMf5FLWfdLA" name="cpId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WeXgjzFEeiWMf5FLWfdLA" annotatedElement="_1WeXgTzFEeiWMf5FLWfdLA">
            <body>Identifiers of the CP instances attached to the constituent VNFs and PNFs or the sap instances of the VNFFG.&#xD;
NOTE: It indicates an exhaustive list of all the CP instances and SAP instances of the VNFFG.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WeXhTzFEeiWMf5FLWfdLA" name="nfp" aggregation="composite">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WeXhjzFEeiWMf5FLWfdLA" annotatedElement="_1WeXhTzFEeiWMf5FLWfdLA">
            <body>Information on the NFPs of this VNFFG. </body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_u4EXICo6EemS0_wZSU3sbA" name="SwImage">
        <ownedComment xmi:type="uml:Comment" xmi:id="_3769QCo6EemS0_wZSU3sbA" annotatedElement="_u4EXICo6EemS0_wZSU3sbA">
          <body>A software image</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_Lpu5wCo9EemS0_wZSU3sbA" name="LogicalNodeRequirements">
        <ownedComment xmi:type="uml:Comment" xmi:id="_TZVpwCo9EemS0_wZSU3sbA" annotatedElement="_Lpu5wCo9EemS0_wZSU3sbA">
          <body>This information element describes compute, memory and I/O requirements that are to be associated with the logical node of infrastructure. The logical node requirements are a sub-component of the VDU level requirements. As an example for illustration purposes, a logical node correlates to the concept of a NUMA cell in libvirt terminology.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qPKK8Co9EemS0_wZSU3sbA" name="id" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13bOkCo9EemS0_wZSU3sbA" annotatedElement="_qPKK8Co9EemS0_wZSU3sbA">
            <body>Identifies this set of logical node requirements.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_7P3S4Co9EemS0_wZSU3sbA" name="logicalNodeRequirementDetail" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Iyi0wCo-EemS0_wZSU3sbA" annotatedElement="_7P3S4Co9EemS0_wZSU3sbA">
            <body>The logical node-level compute, memory and I/O requirements. An array of key-value pairs that articulate the deployment requirements.&#xD;
This could include the number of CPU cores on this logical node, a memory configuration specific to a logical node (e.g. such as available in the Linux kernel via the libnuma library) or a requirement related to the association of an I/O device with the logical node.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_C7uLUCo-EemS0_wZSU3sbA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_C8IbACo-EemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_-5-w8Cr9EemS0_wZSU3sbA" name="VnfVirtualLinkDesc">
        <ownedComment xmi:type="uml:Comment" xmi:id="_g1eIkCsKEemS0_wZSU3sbA" annotatedElement="_-5-w8Cr9EemS0_wZSU3sbA">
          <body>Represents the type of network connectivity mandated by the VNF vendor between two or more Connection Points which includes at least one Internal Connection Point.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_LxM-0DRxEem2n8bBHelJyw">
          <general xmi:type="uml:Class" href="Common.uml#_Tw79sD2pEeiu6I5JfRTxxQ"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZuR54Cr-EemS0_wZSU3sbA" name="monitoringParameter" visibility="public" type="_HlF2kDmxEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_mt7AICr-EemS0_wZSU3sbA" annotatedElement="_ZuR54Cr-EemS0_wZSU3sbA">
            <body>Specifies the virtualised resource related performance metrics on VLD level to be tracked by the VNFM.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_i_MroCr-EemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_i_gNoCr-EemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qCsKQisDEemS0_wZSU3sbA" name="_virtualLinkDescFlavour" type="_oFQM8Dd-EeiIfPeSAqyGdQ" aggregation="composite" association="_qCk1gCsDEemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_HAhLgCsEEemS0_wZSU3sbA" annotatedElement="_qCsKQisDEemS0_wZSU3sbA">
            <body>Describes a specific flavour of the VL with specific bitrate requirements.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qCt_cCsDEemS0_wZSU3sbA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qCumgCsDEemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_pQg3kET7EemWRYeHGX88Yw" name="SecurityGroupRule">
        <ownedComment xmi:type="uml:Comment" xmi:id="_uU5XcET7EemWRYeHGX88Yw" annotatedElement="_pQg3kET7EemWRYeHGX88Yw">
          <body>Security group rule specifies the matching criteria for the ingress and/or egress traffic to/from the visited connection points. If an ingress traffic is accepted, the corresponding egress response shall be allowed, regardless of the security group rules on the egress direction. If an egress traffic is allowed, the corresponding ingress response shall be accepted, regardless of the security group rules on the ingress direction. The design of security group rule follows a permissive model where all security group rules applied to a CP are dealt with in an &quot;OR&quot; logic fashion, i.e. the traffic is allowed if it matches any security group rule applied to this CP.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2tGYgET7EemWRYeHGX88Yw" name="securityGroupRuleId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DLfL0ET8EemWRYeHGX88Yw" annotatedElement="_2tGYgET7EemWRYeHGX88Yw">
            <body>Identifier of the security group rule.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GBV-oET8EemWRYeHGX88Yw" name="description" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_OPGDMET8EemWRYeHGX88Yw">
            <body>Human readable description of the security group rule</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_K2g90ET8EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_K29pwET8EemWRYeHGX88Yw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nFlboET8EemWRYeHGX88Yw" name="direction" visibility="public" type="_T3At8ET8EemWRYeHGX88Yw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4iU_UET8EemWRYeHGX88Yw" annotatedElement="_nFlboET8EemWRYeHGX88Yw">
            <body>The direction in which the security group rule is applied. </body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qKglMET8EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qKy5EET8EemWRYeHGX88Yw" value="1"/>
          <defaultValue xmi:type="uml:LiteralString" xmi:id="_0HOtAET8EemWRYeHGX88Yw" name="Ingress" value="INGRESS"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZFaQAET9EemWRYeHGX88Yw" name="etherType" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_pOd-QET9EemWRYeHGX88Yw" annotatedElement="_ZFaQAET9EemWRYeHGX88Yw">
            <body>Indicates the protocol carried over the Ethernet layer.</body>
          </ownedComment>
          <type xmi:type="uml:Enumeration" href="Common.uml#_TTf2EB89EemJTaeYhZuDRA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gzO3UET9EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gzgkIET9EemWRYeHGX88Yw" value="1"/>
          <defaultValue xmi:type="uml:LiteralString" xmi:id="_kQWecET9EemWRYeHGX88Yw" name="IpV4" value="IPV4"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vyMxAET9EemWRYeHGX88Yw" name="protocol" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_C645IET-EemWRYeHGX88Yw" annotatedElement="_vyMxAET9EemWRYeHGX88Yw">
            <body>Indicates the protocol carried over the IP layer. Permitted values: any protocol defined in the IANA protocol registry, e.g. TCP, UDP, ICMP, etc. &#xD;
See  https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml&#xD;
Note: IFA011 defines this as an enum, but as the list is not complete, made this a string.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_494dcET9EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4-I8IET9EemWRYeHGX88Yw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_SagBwET-EemWRYeHGX88Yw" name="portRangeMin" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_hcBgMET-EemWRYeHGX88Yw" annotatedElement="_SagBwET-EemWRYeHGX88Yw">
            <body>Indicates minimum port number in the range that is matched by the security group rule.  If a value is provided at design-time, this value may be overridden at run-time based on other deployment requirements or constraints.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YAKpwET-EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YAbIcET-EemWRYeHGX88Yw" value="1"/>
          <defaultValue xmi:type="uml:LiteralInteger" xmi:id="_kyGrMET-EemWRYeHGX88Yw" name="Range"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qbWLoET-EemWRYeHGX88Yw" name="portRangeMax" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qbWLoUT-EemWRYeHGX88Yw" annotatedElement="_qbWLoET-EemWRYeHGX88Yw">
            <body>Indicates maximum port number in the range that is matched by the security group rule.  If a value is provided at design-time, this value may be overridden at run-time based on other deployment requirements or constraints.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qbWLokT-EemWRYeHGX88Yw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qbWLo0T-EemWRYeHGX88Yw" value="1"/>
          <defaultValue xmi:type="uml:LiteralInteger" xmi:id="_qbWLpET-EemWRYeHGX88Yw" name="Range" value="65535"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_jCjpYE_kEemeaek-m0jmOA" name="AnfInstance">
        <ownedComment xmi:type="uml:Comment" xmi:id="_T6J8QMNmEemImq9HquDN-w" annotatedElement="_jCjpYE_kEemeaek-m0jmOA">
          <body>An Allotted Network Function Instance is a network function provided (or allotted) by some service instance.   The allotted network function may be incorporated into the topology of some consuming service like other network functions. </body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_3O3xsE_kEemeaek-m0jmOA">
          <general xmi:type="uml:Class" href="Nf.uml#_VtzSoESyEeiVGPeZpaYNtQ"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Jl2CYD1NEeqiP64oaDnqZQ" name="selfLink">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qeIKMD1REeqiP64oaDnqZQ" annotatedElement="_Jl2CYD1NEeqiP64oaDnqZQ">
            <body>Link back to more information in the controller</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PKJYcD1NEeqiP64oaDnqZQ" name="resourceVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1CvYcD1REeqiP64oaDnqZQ" annotatedElement="_PKJYcD1NEeqiP64oaDnqZQ">
            <body>Concurrency value</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PzepUD1NEeqiP64oaDnqZQ" name="orchestrationStatus">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3YiLID1REeqiP64oaDnqZQ" annotatedElement="_PzepUD1NEeqiP64oaDnqZQ">
            <body>Orchestration status</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_QcWAID1NEeqiP64oaDnqZQ" name="operationalStatus">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6ZFyED1REeqiP64oaDnqZQ" annotatedElement="_QcWAID1NEeqiP64oaDnqZQ">
            <body>Indicator for whether the resource is considered operational</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_naRUcD1NEeqiP64oaDnqZQ" name="accessProviderId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0C5ksD1UEeqiP64oaDnqZQ" annotatedElement="_naRUcD1NEeqiP64oaDnqZQ">
            <body>Store the id of the access provider of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_urrFgD1NEeqiP64oaDnqZQ" name="accessClientId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_2CSCgD1UEeqiP64oaDnqZQ" annotatedElement="_urrFgD1NEeqiP64oaDnqZQ">
            <body>Store the id of the access client of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wBaJYD1NEeqiP64oaDnqZQ" name="accessTopologyId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4WKwsD1UEeqiP64oaDnqZQ" annotatedElement="_wBaJYD1NEeqiP64oaDnqZQ">
            <body>Store the id of the access topology of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_yZXfQD1NEeqiP64oaDnqZQ" name="accessNodeId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6vKBUD1UEeqiP64oaDnqZQ" annotatedElement="_yZXfQD1NEeqiP64oaDnqZQ">
            <body>Store the id of the access node of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_B1oY8D1OEeqiP64oaDnqZQ" name="accessLtpId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9SaBMD1UEeqiP64oaDnqZQ" annotatedElement="_B1oY8D1OEeqiP64oaDnqZQ">
            <body>Store the id of the access ltp of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_EZy-0D1OEeqiP64oaDnqZQ" name="cvLan">
          <ownedComment xmi:type="uml:Comment" xmi:id="__JJgYD1UEeqiP64oaDnqZQ" annotatedElement="_EZy-0D1OEeqiP64oaDnqZQ">
            <body>Store the cvlan of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GkVjwD1OEeqiP64oaDnqZQ" name="vpnName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_B5KJ4D1VEeqiP64oaDnqZQ" annotatedElement="_GkVjwD1OEeqiP64oaDnqZQ">
            <body>Store the vpn-name of this allotted-resource.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ItmWUD1OEeqiP64oaDnqZQ" name="tunnelxConnects">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J8i1sD1OEeqiP64oaDnqZQ" name="relationshipList">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_vfWakMbIEeqGwZoAtvAq1A" name="VnfInterfaceDetails">
        <ownedComment xmi:type="uml:Comment" xmi:id="_wWHgENs4Eeqc48iFXy8U7A">
          <body>The VnfInterfaceDetails information element specifies the details of an interface produced by the VNF on the Ve-Vnfm reference point.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_E_DdYMbJEeqGwZoAtvAq1A" name="cpdid">
          <ownedComment xmi:type="uml:Comment" xmi:id="__aT4ANs4Eeqc48iFXy8U7A">
            <body>References one or more CPDs from which to instantiate external CPs through which interface endpoints on the VNF side can be reached by the VNFM.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IEaEwMbJEeqGwZoAtvAq1A" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_aVt48MbJEeqGwZoAtvAq1A" name="interfacedetails">
          <ownedComment xmi:type="uml:Comment" xmi:id="_H4508Ns5Eeqc48iFXy8U7A">
            <body>Provide additional data to access the interface endpoint (e.g. API URI prefix).</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xON6sMbJEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <nestedClassifier xmi:type="uml:Enumeration" xmi:id="_Pq_FoNtDEeqc48iFXy8U7A" name="InterfaceName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UVRDcNtDEeqc48iFXy8U7A">
            <body>Specifies an interface produced by the VNF.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_iSbh4NtDEeqc48iFXy8U7A" name="VNF_CONFIGURATION"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_upQUoNtDEeqc48iFXy8U7A" name="VNF_INDICATOR"/>
        </nestedClassifier>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_yyh4AMbHEeqGwZoAtvAq1A" name="ChecksumData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_eWQoQNs4Eeqc48iFXy8U7A">
          <body>The ChecksumData information element supports providing information about the result of performing a checksum operation over some arbitrary data.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2zDHIMbHEeqGwZoAtvAq1A" name="algorithm">
          <ownedComment xmi:type="uml:Comment" xmi:id="_h_uCQNs4Eeqc48iFXy8U7A">
            <body>Species the algorithm used to obtain the checksum value.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6WmtcMbHEeqGwZoAtvAq1A" name="hash">
          <ownedComment xmi:type="uml:Comment" xmi:id="_mHGuYNs4Eeqc48iFXy8U7A">
            <body>Contains the result of applying the algorithm indicated by the algorithm attribute to the data to which this ChecksumData refers. </body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_ownWsPdlEeq0Kr0QR-lqNw" name="VnfPackageChangeInfo">
        <ownedComment xmi:type="uml:Comment" xmi:id="_2_DV4PdmEeq0Kr0QR-lqNw">
          <body>A VnfPackageChangeInfo information element describes the processes and rules to be used for performing the resource related tasks while assisting the &quot;change current VNF Package&quot; to change a VNF instance to a different VNF Package (destination package).&#xD;When creating a VNF package, the VNF vendor can include VnfPackageChangeInfo information elements in the package which allow the package to act as a source package or as a destination package for a modification in relation to another package, which has been created earlier or at the same time.
To populate a VnfPackageChangeInfo information element and the underlying related information elements, knowledge of both the source package and the destination package is required.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_e-_J4Pg8EeqczaleenSRZA" name="selector" type="_MMdpkPg9EeqczaleenSRZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PYGXwPhAEeqczaleenSRZA">
            <body>Information to identify the source and destination VNFD for the change, and the related deployment flavours.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_sIlA4Pg9EeqczaleenSRZA" name="additionalParamsId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_29xBwPg9EeqczaleenSRZA" annotatedElement="_sIlA4Pg9EeqczaleenSRZA">
            <body>References the ChangeCurrentVnfPackageOpConfig information element that defines the valid additional parameters for the change.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_sLIJIPg-EeqczaleenSRZA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kJUHcPhBEeqczaleenSRZA" name="modificationQualifier" type="_DxGxYPg-EeqczaleenSRZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YTiToPg-EeqczaleenSRZA">
            <body>Specifies the type of modification resulting from transitioning from srcVnfdId to dstVnfdId. The possible values are:&#xD;UP - indicating that the destination VNF version is newer than the source version,&#xD;DOWN - indicating that the destination VNF version is older than the source version.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kB5YMPg-EeqczaleenSRZA" name="additionalModificationDescription">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UT2gEPhAEeqczaleenSRZA">
            <body>A VNF provider may define additional information to qualify further the change between the two versions, such as &quot;VNF upgrade&quot;, &quot;VNF update&quot;, &quot;VNF downgrade&quot;, etc.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XwMOoPhBEeqczaleenSRZA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XwOD0PhBEeqczaleenSRZA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vRmx4Pg-EeqczaleenSRZA" name="componentMapping" type="_J271QPhAEeqczaleenSRZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ak-f4PhAEeqczaleenSRZA">
            <body>Mapping information related to identifiers of components in source VNFD and destination VNFD that concern to the change process.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ztXLgPg-EeqczaleenSRZA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ztaO0Pg-EeqczaleenSRZA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_i3qHwPhAEeqczaleenSRZA" name="lcmScriptId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tccVIPhAEeqczaleenSRZA" annotatedElement="_i3qHwPhAEeqczaleenSRZA">
            <body>References a lifecycle management script that is executed as part of this &quot;change current VNF Package&quot; process.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-1ymkPhAEeqczaleenSRZA" name="coordinationId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_KqXA0PhBEeqczaleenSRZA" annotatedElement="_-1ymkPhAEeqczaleenSRZA">
            <body>References applicable VNF LCM operation coordination actions.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_EVJLMPhBEeqczaleenSRZA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_EVLncPhBEeqczaleenSRZA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_O2uTkPhBEeqczaleenSRZA" name="dstFlavourId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UpSp8PhTEeqmQbGVBesp1w">
            <body>Identifies the deployment flavour in the destination VNF package for which this change applies. The flavour ID is defined in the destination VNF package.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <nestedClassifier xmi:type="uml:Enumeration" xmi:id="_DxGxYPg-EeqczaleenSRZA" name="ModificationQualifier">
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_QIHxYPg-EeqczaleenSRZA" name="UP"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_RnWvgPg-EeqczaleenSRZA" name="DOWN"/>
        </nestedClassifier>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_f2Mj8PdmEeq0Kr0QR-lqNw" name="VnfLcmOperationCoordination">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Fa4-QPdwEeq0Kr0QR-lqNw">
          <body>This information element defines the sets of information needed for a coordination action in a VNF lifecycle&#xD;management operation.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_oS3hUPhCEeqczaleenSRZA" name="vnfLcmOpCoordinationId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xn4v8PhCEeqczaleenSRZA">
            <body>Identifies the specific VNF LCM operation coordination action.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_2459oPhCEeqczaleenSRZA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_-nXeIPhCEeqczaleenSRZA">
            <body>Human readable description of the coordination action.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_A0LT8PhDEeqczaleenSRZA" name="endpointType" type="_UqWNIPhDEeqczaleenSRZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_efS5APhDEeqczaleenSRZA">
            <body>Specifies the type of the endpoint exposing the LCM operation coordination such as other operations supporting or management systems (e.g. an EM) or the VNF instance.&#xD;Allowed values:&#xD;• MGMT: coordination with other operation supporting management systems.&#xD;• VNF: coordination with the VNF instance.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_i-MGMPhDEeqczaleenSRZA" name="coordinationStage">
          <ownedComment xmi:type="uml:Comment" xmi:id="_py6iUPhDEeqczaleenSRZA">
            <body>Indicates the coordination stage during the VNF LCM operation.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_rmRWUPhDEeqczaleenSRZA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tQ8vcPhDEeqczaleenSRZA" name="coordinationParams" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xweOwPhDEeqczaleenSRZA">
            <body>Input information needed by the external coordinating entity.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ug8XsPhDEeqczaleenSRZA"/>
        </ownedAttribute>
        <nestedClassifier xmi:type="uml:Enumeration" xmi:id="_UqWNIPhDEeqczaleenSRZA" name="EndpointType">
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_UqWNIfhDEeqczaleenSRZA" name="MGMT"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_UqWNIvhDEeqczaleenSRZA" name="VNF"/>
        </nestedClassifier>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_IFkAYA8MEeuBquWJMTL0qg" name="VirtualCpd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_7TBwMQTSEeuUzLXQ51gGgw">
          <body>A VirtualCpd is a type of Cpd and describes a requirement to create a virtual connection point allowing the access to a number of VNFC instances (based on their respective VDUs).</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_aRIY8A8MEeuBquWJMTL0qg">
          <general xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_UukIQA8MEeuBquWJMTL0qg" name="vdu">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UukIQQ8MEeuBquWJMTL0qg" annotatedElement="_UukIQA8MEeuBquWJMTL0qg">
            <body>References the VDU(s) which implement this service. </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UukIQg8MEeuBquWJMTL0qg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_YRO9wA8MEeuBquWJMTL0qg" name="additionalServiceData" type="_rqNLwATTEeuUzLXQ51gGgw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YRO9wQ8MEeuBquWJMTL0qg" annotatedElement="_YRO9wA8MEeuBquWJMTL0qg">
            <body>Additional service identification data of the VirtualCp exposed to NFV-MANO.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YRO9wg8MEeuBquWJMTL0qg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YRO9ww8MEeuBquWJMTL0qg" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_SYZyIFBHEeu9q4B_TIiAOQ" name="OsContainerDesc" visibility="public">
        <ownedComment xmi:type="uml:Comment" xmi:id="_xFMnEQTOEeuUzLXQ51gGgw">
          <body>The OsContainerDesc information element describes the members properties of a set of co-located container compute resources when these are realizing a VDU.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6_ttEFBJEeu9q4B_TIiAOQ" name="osContainerDescId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6_ttEVBJEeu9q4B_TIiAOQ" annotatedElement="_6_ttEFBJEeu9q4B_TIiAOQ">
            <body>Unique identifier of this OsContainerDesc in the VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ADSUoFBKEeu9q4B_TIiAOQ" name="requestedCpuResources">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ADSUoVBKEeu9q4B_TIiAOQ" annotatedElement="_ADSUoFBKEeu9q4B_TIiAOQ">
            <body>Number of CPU resources requested for the container (e.g. in milli-CPU-s)</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSeNcFBKEeu9q4B_TIiAOQ" name="requestedMemoryResources">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSeNcVBKEeu9q4B_TIiAOQ" annotatedElement="_DSeNcFBKEeu9q4B_TIiAOQ">
            <body>Amount of memory resources requested for the container (e.g. in MB).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSjF8FBKEeu9q4B_TIiAOQ" name="requestedEphemeralStorageResources">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSjF8VBKEeu9q4B_TIiAOQ" annotatedElement="_DSjF8FBKEeu9q4B_TIiAOQ">
            <body>Size of ephemeral storage resources requested for the container (e.g. in GB).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSk7IFBKEeu9q4B_TIiAOQ" name="extendedResourceRequests">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSk7IVBKEeu9q4B_TIiAOQ" annotatedElement="_DSk7IFBKEeu9q4B_TIiAOQ">
            <body>An array of key-value pairs of extended resources required by the container. </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSmJQFBKEeu9q4B_TIiAOQ" name="cpuResourceLimit">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSmJQVBKEeu9q4B_TIiAOQ" annotatedElement="_DSmJQFBKEeu9q4B_TIiAOQ">
            <body>Number of CPU resources the container can maximally use (e.g. in milli-CPU).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSn-cFBKEeu9q4B_TIiAOQ" name="memoryResourceLimit">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSn-cVBKEeu9q4B_TIiAOQ" annotatedElement="_DSn-cFBKEeu9q4B_TIiAOQ">
            <body>Amount of memory resources the container can maximum use (e.g. in MB).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSpzoFBKEeu9q4B_TIiAOQ" name="ephemeralStorageResourceLimit">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSpzoVBKEeu9q4B_TIiAOQ" annotatedElement="_DSpzoFBKEeu9q4B_TIiAOQ">
            <body>Size of ephemeral storage resources the container can maximum use (e.g. in GB).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSrBwFBKEeu9q4B_TIiAOQ" name="swimageDesc" type="_J0Zx0DOSEeiHat9KcP8uWA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSrBwVBKEeu9q4B_TIiAOQ">
            <body>Describes the software image realizing this OS container.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSs28FBKEeu9q4B_TIiAOQ" name="bootData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSs28VBKEeu9q4B_TIiAOQ" annotatedElement="_DSs28FBKEeu9q4B_TIiAOQ">
            <body>Contains a string or a URL to a file contained in the VNF package used to customize a container resource at boot time. The bootData may contain variable parts that are replaced by deployment specific values before being sent.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSvTMFBKEeu9q4B_TIiAOQ" name="virtualStorageDesc" type="_K_9mADOSEeiHat9KcP8uWA" aggregation="shared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSvTMVBKEeu9q4B_TIiAOQ">
            <body>Links to virtualStorageDesc-s of the Vdu. The storages represented by the linked VirtualStorageDesc-s are attached to the OS Container as volumes.
Shall be present in case the OS container requires storage resources.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DSvTMlBKEeu9q4B_TIiAOQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DSvTM1BKEeu9q4B_TIiAOQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DSxIYFBKEeu9q4B_TIiAOQ" name="monitoringParameters" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DSxIYVBKEeu9q4B_TIiAOQ" annotatedElement="_DSxIYFBKEeu9q4B_TIiAOQ">
            <body>Specifies the virtualised resource related performance metrics on the OsContainerDesc level to be tracked by the VNFM</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Ns.uml#_7IkgYO6cEeqoIpAKV26OqA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_J5QHoFBfEeu9q4B_TIiAOQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_ULe1IFBOEeu9q4B_TIiAOQ" name="MciopProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_ed1OsFBOEeu9q4B_TIiAOQ">
          <body>A Managed Container Infrastructure Object Package (MCIOP) is a hierarchical aggregate of information objects for OS container management and orchestration. Multiple MCIOPs can be included in a VNF Package. The MciopProfile information element provides properties of the MCIOP which are used during deployment of containerized workloads based on a MCIOP, associated to a VNF deployment flavour.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ed1OsVBOEeu9q4B_TIiAOQ" name="mciopId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ed1OslBOEeu9q4B_TIiAOQ" annotatedElement="_ed1OsVBOEeu9q4B_TIiAOQ">
            <body>Identifies the MCIOP in the VNF package.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ed4SAFBOEeu9q4B_TIiAOQ" name="deploymentOrder">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ed4SAVBOEeu9q4B_TIiAOQ" annotatedElement="_ed4SAFBOEeu9q4B_TIiAOQ">
            <body>Indicates the order in which this MCIOP shall be deployed in relation to other MCIOPs. A lower value specifies an earlier deployment.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ed4SAlBOEeu9q4B_TIiAOQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ed45EFBOEeu9q4B_TIiAOQ" name="affinityOrAntiAffinityGroupId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ed45EVBOEeu9q4B_TIiAOQ" annotatedElement="_ed45EFBOEeu9q4B_TIiAOQ">
            <body>References the affinity or anti-affinity group(s) the MCIOP belongs to.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ed45ElBOEeu9q4B_TIiAOQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ed45E1BOEeu9q4B_TIiAOQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ed5gIFBOEeu9q4B_TIiAOQ" name="associatedVdu">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ed5gIVBOEeu9q4B_TIiAOQ" annotatedElement="_ed5gIFBOEeu9q4B_TIiAOQ">
            <body>List of VDUs which are associated to this MCIOP and which are deployed using this MCIOP.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ed5gIlBOEeu9q4B_TIiAOQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ed5gI1BOEeu9q4B_TIiAOQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_zPN5MzOHEei5Af8DcjrhIQ" name="TypeDefinitions">
      <packagedElement xmi:type="uml:DataType" xmi:id="_dSO64DawEei23_xWdimG9w" name="RequestedAdditionalCapabilityData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_ByokYGNhEeio9amveq0yWQ" annotatedElement="_dSO64DawEei23_xWdimG9w">
          <body>This information element describes requested additional capability for a particular VDU. Such a capability may be for acceleration or specific tasks. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_d8Gh0DaxEei23_xWdimG9w" name="supportMandatory" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_jz6pwDaxEei23_xWdimG9w" annotatedElement="_d8Gh0DaxEei23_xWdimG9w">
            <body>Indicates whether the requested additional capability is mandatory for successful operation.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_j_7h8DawEei23_xWdimG9w" name="requestedAdditionalCapabilityName" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_s7MMwDawEei23_xWdimG9w" annotatedElement="_j_7h8DawEei23_xWdimG9w">
            <body>Identifies a requested additional capability for the VDU.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4g-HoDaxEei23_xWdimG9w" name="minRequestedAdditionalCapabilityVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ArR2oDayEei23_xWdimG9w" annotatedElement="_4g-HoDaxEei23_xWdimG9w">
            <body>Identifies the minimum version of the requested additional capability.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9JTksDaxEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9JZrUDaxEei23_xWdimG9w" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_EHA9sDayEei23_xWdimG9w" name="preferredRequestedAdditionalCapabilityVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LF3mMDayEei23_xWdimG9w" annotatedElement="_EHA9sDayEei23_xWdimG9w">
            <body>Identifies the preferred version of the requested additional capability.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IGrRMDayEei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IGyl8DayEei23_xWdimG9w" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_M3Ly0DayEei23_xWdimG9w" name="targetPerformanceParameters">
          <ownedComment xmi:type="uml:Comment" xmi:id="_a8PB8DayEei23_xWdimG9w" annotatedElement="_M3Ly0DayEei23_xWdimG9w">
            <body>Identifies specific attributes, dependent on the requested additional capability type.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Q6l8oDnNEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Q6--MDnNEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_AJK9MDa0Eei23_xWdimG9w" name="VirtualMemoryData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_A4n9sDOrEemzC6274d_Yog" annotatedElement="_AJK9MDa0Eei23_xWdimG9w">
          <body>The VirtualMemoryData information element supports the specification of requirements related to virtual memory of a virtual compute resource.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HJMDUDa0Eei23_xWdimG9w" name="virtualMemSize">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QinQ0Da0Eei23_xWdimG9w" annotatedElement="_HJMDUDa0Eei23_xWdimG9w">
            <body>Amount of virtual Memory (e.g. in MB).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_TXQisDa0Eei23_xWdimG9w" name="virtualMemOversubscriptionPolicy">
          <ownedComment xmi:type="uml:Comment" xmi:id="_YB7iEDa0Eei23_xWdimG9w" annotatedElement="_TXQisDa0Eei23_xWdimG9w">
            <body>The memory core oversubscription policy in terms of virtual memory to physical memory on the platform. The cardinality can be 0 during the allocation request, if no particular value is requested.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_auRMgDa0Eei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_auen4Da0Eei23_xWdimG9w" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_c4PJsDa0Eei23_xWdimG9w" name="vduMemRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kmHbYDa0Eei23_xWdimG9w" annotatedElement="_c4PJsDa0Eei23_xWdimG9w">
            <body>Array of key-value pair requirements on the memory for the VDU.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_iQSzgDa0Eei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_iQaIQDa0Eei23_xWdimG9w" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mxsiIDa0Eei23_xWdimG9w" name="numaEnabled">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sJ9nUDa0Eei23_xWdimG9w" annotatedElement="_mxsiIDa0Eei23_xWdimG9w">
            <body>It specifies the memory allocation to be cognisant of the relevant process/core allocation. The cardinality can be 0 during the allocation request, if no particular value is requested.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qc5BgDa0Eei23_xWdimG9w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qc7dwDa0Eei23_xWdimG9w" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_tIZ6oDa2Eei23_xWdimG9w" name="VirtualCpuData ">
        <ownedComment xmi:type="uml:Comment" xmi:id="_LLo7IGNhEeio9amveq0yWQ" annotatedElement="_tIZ6oDa2Eei23_xWdimG9w">
          <body>The VirtualCpuData information element supports the specification of requirements related to virtual CPU(s) of a virtual compute resource.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KD8ncDa4EeivvI-m1BaAbA" name="cpuArchitecture">
          <ownedComment xmi:type="uml:Comment" xmi:id="_S3gu0Da4EeivvI-m1BaAbA" annotatedElement="_KD8ncDa4EeivvI-m1BaAbA">
            <body>CPU architecture type. Examples are x86, ARM. The cardinality can be 0 during the allocation request, if no particular CPU architecture type is requested.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PshZgDa4EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PsrKgDa4EeivvI-m1BaAbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_WF3hMDa4EeivvI-m1BaAbA" name="numVirtualCpu">
          <ownedComment xmi:type="uml:Comment" xmi:id="_a8BX0Da4EeivvI-m1BaAbA" annotatedElement="_WF3hMDa4EeivvI-m1BaAbA">
            <body>Number of virtual CPUs.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_c2wmMDa4EeivvI-m1BaAbA" name="virtualCpuClock">
          <ownedComment xmi:type="uml:Comment" xmi:id="_femyMDa4EeivvI-m1BaAbA" annotatedElement="_c2wmMDa4EeivvI-m1BaAbA">
            <body>Minimum virtual CPU clock rate (e.g. in MHz). The cardinality can be 0 during the allocation request, if no particular value is requested.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gNcOIDa4EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gNgfkDa4EeivvI-m1BaAbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mqETUDa4EeivvI-m1BaAbA" name="virtualCpuOversubscriptionPolicy">
          <ownedComment xmi:type="uml:Comment" xmi:id="_rONM4Da4EeivvI-m1BaAbA" annotatedElement="_mqETUDa4EeivvI-m1BaAbA">
            <body>The CPU core oversubscription policy e.g. the relation of virtual CPU cores to physical CPU cores/threads. The cardinality can be 0 during the allocation request, if no particular value is requested.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_smIpIDa4EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_smU2YDa4EeivvI-m1BaAbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vD0MgDa4EeivvI-m1BaAbA" name="vduCpuRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1sPSADa4EeivvI-m1BaAbA" annotatedElement="_vD0MgDa4EeivvI-m1BaAbA">
            <body>Array of key-value pair requirements on the Compute (CPU) for the VDU.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_z1LCsDa4EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_z1S-gDa4EeivvI-m1BaAbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_3WU1QDa4EeivvI-m1BaAbA" name="virtualCpuPinning" type="_DpVfADa5EeivvI-m1BaAbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_8NkRADa4EeivvI-m1BaAbA" annotatedElement="_3WU1QDa4EeivvI-m1BaAbA">
            <body>The virtual CPU pinning configuration for the virtualised compute resource.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5yRTQDa4EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5yVksDa4EeivvI-m1BaAbA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_DpVfADa5EeivvI-m1BaAbA" name="VirtualCpuPinningData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_PmkOUGNhEeio9amveq0yWQ" annotatedElement="_DpVfADa5EeivvI-m1BaAbA">
          <body>The VirtualCpuPinningData information element supports the specification of requirements related to the virtual CPU pinning configuration of a virtual compute resource.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_gv2iMDa5EeivvI-m1BaAbA" name="virtualCpuPinningPolicy" type="_V9WhUDnMEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_VD7RIDa6EeivvI-m1BaAbA" annotatedElement="_gv2iMDa5EeivvI-m1BaAbA">
            <body>The policy can take values of &quot;static&quot; or &quot;dynamic&quot;. In case of &quot;static&quot; the virtual CPU cores are requested to be allocated to logical CPU cores according to the rules defined in virtualCpuPinningRules. In case of &quot;dynamic&quot; the allocation of virtual CPU cores to logical CPU cores is decided by the VIM. (e.g.: SMT (Simultaneous Multi-Threading) requirements).&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_wUoCMDa6EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_wUthwDa6EeivvI-m1BaAbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_heqI8Da5EeivvI-m1BaAbA" name="virtualCpuPinningRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6G8Q0Da6EeivvI-m1BaAbA" annotatedElement="_heqI8Da5EeivvI-m1BaAbA">
            <body>A list of rules that should be considered during the allocation of the virtual CPUs to logical CPUs in case of &quot;static&quot; virtualCpuPinningPolicy.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3ga6gDa6EeivvI-m1BaAbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3gek4Da6EeivvI-m1BaAbA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_ZqQQ8DkIEeiWMf5FLWfdLA" name="VnfConfigurableProperties">
        <ownedComment xmi:type="uml:Comment" xmi:id="_mg8PgDkIEeiWMf5FLWfdLA" annotatedElement="_ZqQQ8DkIEeiWMf5FLWfdLA">
          <body>This information element provides a means to define in the VNFD attributes that represent the configurable properties of a VNF. Configurable properties can be standardized as listed below (e.g. related to auto scaling, auto healing and interface configuration), or can be VNF-specific as defined by the VNF provider.
For a VNF instance, the value of these properties can be queried and modified through the VNFM, using the Query VNF and Modify VNF Information operations. Modifying these values affects directly the configuration of an existing VNF instance. If a configurable property is defined in the VNFD, an initial value may be defined as well.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_pslFEDkIEeiWMf5FLWfdLA" name="isAutoscaleEnabled">
          <ownedComment xmi:type="uml:Comment" xmi:id="_pslFETkIEeiWMf5FLWfdLA" annotatedElement="_pslFEDkIEeiWMf5FLWfdLA">
            <body>It permits to enable (TRUE)/disable (FALSE) the auto-scaling functionality.&#xD;
&#xD;
NOTE: A cardinality of &quot;0&quot; indicates that configuring this present VNF property is not supported.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_pslFEjkIEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_pslFEzkIEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_pxVpQDkIEeiWMf5FLWfdLA" name="isAutohealEnabled">
          <ownedComment xmi:type="uml:Comment" xmi:id="_pxVpQTkIEeiWMf5FLWfdLA" annotatedElement="_pxVpQDkIEeiWMf5FLWfdLA">
            <body>It permits to enable (TRUE)/disable (FALSE) the auto-healing functionality.&#xD;
&#xD;
NOTE: A cardinality of &quot;0&quot; indicates that configuring this present VNF property is not supported.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_pxVpQjkIEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_pxVpQzkIEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6X4YcMbKEeqGwZoAtvAq1A" name="vnfmInterfaceInfo">
          <ownedComment xmi:type="uml:Comment" xmi:id="_El7ggOCYEeq4TaxvD15GLA">
            <body>Contains information enabling access to the NFV-MANO interfaces produced by the VNFM (e.g. URIs and credentials)</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Wia_gMdjEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_98hj4MbKEeqGwZoAtvAq1A" name="vnfmOauthServerInfo">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NnEJ0OCYEeq4TaxvD15GLA">
            <body>Contains information to enable discovery of the authorization server protecting access to VNFM interface</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Xj98EMdjEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_BTijAMbLEeqGwZoAtvAq1A" name="vnfOauthServerInfo">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TfZ2MOCYEeq4TaxvD15GLA">
            <body>Contains information to enable discovery of the authorization server to validate the access tokens provided by the VNFM when the VNFM accesses the VNF interfaces, if that functionality (token introspection) is supported by the authorization server.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YpD74MdjEeqGwZoAtvAq1A"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_pxdlEDkIEeiWMf5FLWfdLA" name="additionalConfigurableProperty">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_pxdlETkIEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_pxdlEjkIEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_iZQzADkJEeiWMf5FLWfdLA" name="VnfInfoModifiableAttributes">
        <ownedComment xmi:type="uml:Comment" xmi:id="_22EOYDkJEeiWMf5FLWfdLA" annotatedElement="_iZQzADkJEeiWMf5FLWfdLA">
          <body>This datatype defines the VNF-specific extension and metadata attributes of the VnfInfo that are writeable via the ModifyVnfInfo operation.&#xD;
&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vYoMcDkJEeiWMf5FLWfdLA" name="extension">
          <ownedComment xmi:type="uml:Comment" xmi:id="_vYoMcTkJEeiWMf5FLWfdLA" annotatedElement="_vYoMcDkJEeiWMf5FLWfdLA">
            <body>All additional VNF-specific attributes of VnfInfo that affect the lifecycle management of a VNF instance. For each VNF instance, these attributes are stored persistently by the VNFM and can be queried and modified through the VNFM.&#xD;These attributes are intended to be consumed by the VNFM or by the lifecycle management scripts during the execution of VNF lifecycle management operations.&#xD;Modifying these values has no direct effect on the VNF instance; however, modified values can be considered during subsequent VNF lifecycle management operations, which means that the modified values can indirectly affect the configuration of the VNF instance.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vYoMcjkJEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vYoMczkJEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vYsd4DkJEeiWMf5FLWfdLA" name="metadata">
          <ownedComment xmi:type="uml:Comment" xmi:id="_vYsd4TkJEeiWMf5FLWfdLA" annotatedElement="_vYsd4DkJEeiWMf5FLWfdLA">
            <body>Additional VNF-specific attributes of VnfInfo that provide metadata describing the VNF instance and that are defined by the VNF provider. See note 2. For each VNF instance, these attributes are stored persistently by the VNFM and can be queried and modified through the VNFM.&#xD;These attributes are intended to provide information to functional blocks external to the VNFM and will not be used by the VNFM or the VNF lifecycle management scripts when executing lifecycle management operations.&#xD;Modifying these attributes has no effect on the VNF instance. It only affects the attribute values stored by the VNFM.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vYsd4jkJEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vYsd4zkJEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_1HQGsDkKEeiWMf5FLWfdLA" name="VnfLifecycleManagementScript">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9xGRYDkKEeiWMf5FLWfdLA" name="event" type="_nJzw0DnNEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9xGRYTkKEeiWMf5FLWfdLA" annotatedElement="_9xGRYDkKEeiWMf5FLWfdLA">
            <body>Describes VNF lifecycle event(s) or an external stimulus detected on a VNFM reference point.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9xGRYjkKEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9xGRYzkKEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9xO0QDkKEeiWMf5FLWfdLA" name="icmTransitionEvent">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9xO0QTkKEeiWMf5FLWfdLA" annotatedElement="_9xO0QDkKEeiWMf5FLWfdLA">
            <body>Describes the transition VNF lifecycle event(s) that cannot be mapped to any of the enumerated values defined for the event attribute.&#xD;
&#xD;
NOTE: At least one of these two attributes shall be included.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9xO0QjkKEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9xO0QzkKEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9xQpcDkKEeiWMf5FLWfdLA" name="script">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9xQpcTkKEeiWMf5FLWfdLA" annotatedElement="_9xQpcDkKEeiWMf5FLWfdLA">
            <body>Information to locate a VNF LCM script (e.g. written in a DSL as specified in requirement VNF_PACK.LCM.001) triggered to react to one of the events listed in the event attribute.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9xU64DkKEeiWMf5FLWfdLA" name="scriptDsl">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9xVh8DkKEeiWMf5FLWfdLA" annotatedElement="_9xU64DkKEeiWMf5FLWfdLA">
            <body>Defines the domain specific language (i.e. the type) of script that is provided. Types of scripts could include bash, python, etc.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9xYlQDkKEeiWMf5FLWfdLA" name="scriptInput">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9xYlQTkKEeiWMf5FLWfdLA" annotatedElement="_9xYlQDkKEeiWMf5FLWfdLA">
            <body>Array of KVP requirements with the key as the parameter name and the value as the parameter that need to be passed as an input to the script.&#xD;
&#xD;
NOTE: The scriptInput values are passed to the scripts in addition to the parameters received in the operation invocation request or indicator value change.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9xYlQjkKEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9xYlQzkKEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_HlF2kDmxEeiWMf5FLWfdLA" name="MonitoringParameter">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Vv0P4DmxEeiWMf5FLWfdLA" annotatedElement="_HlF2kDmxEeiWMf5FLWfdLA">
          <body>Specifies the virtualized resource related performance metric to be tracked by the VNFM, e.g. for auto-scaling purposes. The VNFM collects the values of performance metrics identified by this information element from the VIM(s) using one or more locally initiated PM Jobs. These values can be used as inputs to auto-scaling rules.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZccSoDmxEeiWMf5FLWfdLA" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZccSoTmxEeiWMf5FLWfdLA" annotatedElement="_ZccSoDmxEeiWMf5FLWfdLA">
            <body>Unique identifier of the monitoring parameter.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZcmqsDmxEeiWMf5FLWfdLA" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZcmqsTmxEeiWMf5FLWfdLA" annotatedElement="_ZcmqsDmxEeiWMf5FLWfdLA">
            <body>Human readable name of the monitoring parameter.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZcmqsjmxEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ZcmqszmxEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Zcn40DmxEeiWMf5FLWfdLA" name="performanceMetric">
          <ownedComment xmi:type="uml:Comment" xmi:id="_hoXy0CvTEemS0_wZSU3sbA" annotatedElement="_Zcn40DmxEeiWMf5FLWfdLA">
            <body>Identifies the virtualized resource performance metric.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZcpG8DmxEeiWMf5FLWfdLA" name="collectionPeriod" type="_pRh10DnOEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZcpG8TmxEeiWMf5FLWfdLA" annotatedElement="_ZcpG8DmxEeiWMf5FLWfdLA">
            <body>An attribute that describes the periodicity at which to collect the performance information.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZcpG8jmxEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ZcpG8zmxEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zm95IvwtEeijjKJn7OxwuQ" name="localAffinityOrAntiAffinityRule">
          <type xmi:type="uml:DataType" href="Common.uml#_7hn1IDd1EeiIfPeSAqyGdQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_znD_wPwtEeijjKJn7OxwuQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_znD_wfwtEeijjKJn7OxwuQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_MRthQDmyEeiWMf5FLWfdLA" name="VnfcConfigurableProperties">
        <ownedComment xmi:type="uml:Comment" xmi:id="_T2oEMDmyEeiWMf5FLWfdLA" annotatedElement="_MRthQDmyEeiWMf5FLWfdLA">
          <body>This information element provides a means to define additional VNF-specific attributes that represent the configurable properties of a VNFC. For a VNFC instance, the values of these properties can be queried and modified through the VNFM. Modifying these values affects directly the configuration of an existing VNFC instance.	</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_awsTUDmyEeiWMf5FLWfdLA" name="additionalVnfcConfigurableProperty" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_jaxukDmyEeiWMf5FLWfdLA">
            <body>It provides VNFC configurable properties that can be modified using the ModifyVnfInfo operation.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gOyTsDmyEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gPHq4DmyEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_DaKYIDm6EeiWMf5FLWfdLA" name="VnicType">
        <ownedComment xmi:type="uml:Comment" xmi:id="_L8MDkDm6EeiWMf5FLWfdLA" annotatedElement="_DaKYIDm6EeiWMf5FLWfdLA">
          <body>Describes the type of VNIC to which a CP attaches.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Nnw0kDm6EeiWMf5FLWfdLA" name="NORMAL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_ReVdgDm6EeiWMf5FLWfdLA" name="MACVTAP"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Vhg_EDm6EeiWMf5FLWfdLA" name="DIRECT"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_XYz34Dm6EeiWMf5FLWfdLA" name="BAREMETAL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_bbN9YDm6EeiWMf5FLWfdLA" name="DIRECT_PHYSICAL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_fCLdADm6EeiWMf5FLWfdLA" name="VIRTIO_FORWARDER"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="__Zo-8MbGEeqGwZoAtvAq1A" name="SMART-NIC"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_dS8OcATXEeuUzLXQ51gGgw" name="BRIDGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_itDGsATXEeuUzLXQ51gGgw" name="IPVLAN"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_lXukQATXEeuUzLXQ51gGgw" name="LOOPBACK"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_nPdh8ATXEeuUzLXQ51gGgw" name="MACVLAN"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_o9kCgATXEeuUzLXQ51gGgw" name="PTP"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_rFsMoATXEeuUzLXQ51gGgw" name="VLAN"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_ti1kgATXEeuUzLXQ51gGgw" name="HOST-DEVICE"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_EYaAsDnIEeiWMf5FLWfdLA" name="ScaleInfo">
        <ownedComment xmi:type="uml:Comment" xmi:id="_G0jmIGNhEeio9amveq0yWQ" annotatedElement="_EYaAsDnIEeiWMf5FLWfdLA">
          <body>The ScaleInfo information element represents a scale level for a particular scaling aspect. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KFKIIDnIEeiWMf5FLWfdLA" name="aspectId" visibility="public" type="_DlOpkDnDEeiWMf5FLWfdLA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_O1cnUDnIEeiWMf5FLWfdLA" annotatedElement="_KFKIIDnIEeiWMf5FLWfdLA">
            <body>Reference to the scaling aspect.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_SHb8gDnIEeiWMf5FLWfdLA" name="scaleLevel" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_aWpZoDnIEeiWMf5FLWfdLA" annotatedElement="_SHb8gDnIEeiWMf5FLWfdLA">
            <body>The scale level, greater than or equal to 0</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_V9WhUDnMEeiWMf5FLWfdLA" name="PinningPolicy">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Z4_QcDnMEeiWMf5FLWfdLA" annotatedElement="_V9WhUDnMEeiWMf5FLWfdLA">
          <body>Defines the CPU pinning policy.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_a2rnwDnMEeiWMf5FLWfdLA" name="STATIC"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_cc-3MDnMEeiWMf5FLWfdLA" name="DYNAMIC"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_nJzw0DnNEeiWMf5FLWfdLA" name="LcmEvent">
        <ownedComment xmi:type="uml:Comment" xmi:id="_r2384DnNEeiWMf5FLWfdLA" annotatedElement="_nJzw0DnNEeiWMf5FLWfdLA">
          <body>Describes VNF lifecycle event(s) or an external stimulus detected on a VNFM reference point.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_QCv24Jp-Eeidy9iGT_F5-w" name="EVENT_START_INSTANTIATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Sxk0oJp-Eeidy9iGT_F5-w" name="EVENT_END_INSTANTIATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_UmJwoJp-Eeidy9iGT_F5-w" name="EVENT_START_SCALING"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_WqJosJp-Eeidy9iGT_F5-w" name="EVENT_END_SCALING"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_YmnVYJp-Eeidy9iGT_F5-w" name="EVENT_START_SCALING_TO_LEVEL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_cYMwoJp-Eeidy9iGT_F5-w" name="EVENT_END_SCALING_TO_LEVEL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_dxsTIJp-Eeidy9iGT_F5-w" name="EVENT_START_HEALING"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_f7USEJp-Eeidy9iGT_F5-w" name="EVENT_END_HEALING"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_hjRHUJp-Eeidy9iGT_F5-w" name="EVENT_START_TERMINATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_jLRm8Jp-Eeidy9iGT_F5-w" name="EVENT_END_TERMINATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_k00XoJp-Eeidy9iGT_F5-w" name="EVENT_START_VNF_FLAVOR_CHANGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_nf2agJp-Eeidy9iGT_F5-w" name="EVENT_END_VNF_FLAVOR_CHANGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_pB0jkJp-Eeidy9iGT_F5-w" name="EVENT_START_VNF_OPERATION_CHANGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_qhHzIJp-Eeidy9iGT_F5-w" name="EVENT_END_VNF_OPERATION_CHANGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_r_AGYJp-Eeidy9iGT_F5-w" name="EVENT_START_VNF_EXT_CONN_CHANGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_tbSeMJp-Eeidy9iGT_F5-w" name="EVENT_END_VNF_EXT_CONN_CHANGE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_v4uxAJp-Eeidy9iGT_F5-w" name="EVENT_START_VNFINFO_MODIFICATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_xKR4cJp-Eeidy9iGT_F5-w" name="EVENT_END_VNFINFO_MODIFICATION"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_EUC2YDnOEeiWMf5FLWfdLA" name="VnfSource">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Jva58DnOEeiWMf5FLWfdLA" annotatedElement="_EUC2YDnOEeiWMf5FLWfdLA">
          <body>Describes the source of the indicator.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Llhf8DnOEeiWMf5FLWfdLA" name="VNF"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_PXMawDnOEeiWMf5FLWfdLA" name="EM"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_RTPQsDnOEeiWMf5FLWfdLA" name="BOTH"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_pRh10DnOEeiWMf5FLWfdLA" name="CollectionPeriod">
        <ownedComment xmi:type="uml:Comment" xmi:id="_tFpAoDnOEeiWMf5FLWfdLA" annotatedElement="_pRh10DnOEeiWMf5FLWfdLA">
          <body>Specifies the periodicity at which the producer will collect performance information. Note: at the end of each reportingPeriod, the producer will inform the consumer about availability of the performance data collected for each completed collection period during this reportingPeriod. While the exact definition of the types for collectionPeriod and reportingPeriod is left for further specification, it is recommended that the reportingPeriod be equal or a multiple of the collectionPeriod. In the latter case, the performance data for the collection periods within one reporting period would be reported together.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_c8RX8D3BEeiFiY3bcpqGkg" name="HomingStrategy">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zR55wD5cEeijbdkIlrq2uQ" name="Colocation"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_1euWoD5cEeijbdkIlrq2uQ" name="isolation"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_AeSbgD5dEeijbdkIlrq2uQ" name="PlacementStrategy">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_FCQV8D5dEeijbdkIlrq2uQ" name="COLOCATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_GY4KoD5dEeijbdkIlrq2uQ" name="ISOLATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_JaCOgD5dEeijbdkIlrq2uQ" name="EXCLUSIVITY"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_0RG8kEcmEei7eo5RdnNiBQ" name="VirtualLinkBitRateLevel">
        <ownedComment xmi:type="uml:Comment" xmi:id="_5UfW4EcmEei7eo5RdnNiBQ" annotatedElement="_0RG8kEcmEei7eo5RdnNiBQ">
          <body>The VirtualLinkBitRateLevel information element specifies bitrate requirements applicable to a virtual link instantiated from a particular VnfVirtualLinkDesc.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Gn4jQDUvEem2n8bBHelJyw" name="vnfVirtualLinkDescId" visibility="public" type="_-5-w8Cr9EemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WAtHYDUvEem2n8bBHelJyw" annotatedElement="_Gn4jQDUvEem2n8bBHelJyw">
            <body>Uniquely identifies a VnfVirtualLinkDesc</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_auXwYDUvEem2n8bBHelJyw" name="bitrateRequirements" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tuImADUvEem2n8bBHelJyw" annotatedElement="_auXwYDUvEem2n8bBHelJyw">
            <body>Bitrate requirements for an instantiation level or bitrate delta for a scaling step.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_LsX6UDgXEeiOYfGHew0BGg"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_aYK0IHPSEeiuFfjlON-CuQ" name="ProvStatus">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Ij2twHVuEeityfM-lkDl2Q" annotatedElement="_aYK0IHPSEeiuFfjlON-CuQ">
          <body>Provisioning status, used as a trigger for operational monitoring of this resource by service assurance systems.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_kxfYYHPSEeiuFfjlON-CuQ" name="PROVISIONED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_nDl94HPSEeiuFfjlON-CuQ" name="PREPROVISIONED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_okbegHPSEeiuFfjlON-CuQ" name="CAPPED"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_JqA_UHPTEeiuFfjlON-CuQ" name="OperationalStatus">
        <ownedComment xmi:type="uml:Comment" xmi:id="_dtARwHVuEeityfM-lkDl2Q" annotatedElement="_JqA_UHPTEeiuFfjlON-CuQ">
          <body>Indicator for whether the resource is considered operational. Valid values are in-service-path and out-of-service-path.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_QPdCQHPTEeiuFfjlON-CuQ" name="IN_SERVICE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_TkXIkHPTEeiuFfjlON-CuQ" name="OUT_OF_SERVICE"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_5--AQJdUEei-sOl6ywWHlg" name="OrchestrationStatus">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_v6IPgJdaEei-sOl6ywWHlg" name="INVENTORIED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_x5RcwJdaEei-sOl6ywWHlg" name="ASSIGNED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zQDCcJdaEei-sOl6ywWHlg" name="CREATED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_0SWM8JdaEei-sOl6ywWHlg" name="ACTIVE"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_ZQtesOzlEei7-e9MrPJW7Q" name="VnfLcmOperationsConfiguration">
        <ownedComment xmi:type="uml:Comment" xmi:id="_fhjekOidEeqBDMHZYEWtvQ">
          <body>This information element is a cont operations, structured by operation.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_yPciUBDCEemFz_A_9-IJMQ" name="ConsumerScope">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_yPciURDCEemFz_A_9-IJMQ" name="BACK_END"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZoUjzEEeiWMf5FLWfdLA" name="VnfIndicatorData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoUzzEEeiWMf5FLWfdLA" annotatedElement="_kEZoUjzEEeiWMf5FLWfdLA">
          <body>The VnfIndicatorData datatype identifies a VNF indicator in a VNFD.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoVDzEEeiWMf5FLWfdLA" name="vnfdId" type="_aaEZADOREeiHat9KcP8uWA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoVTzEEeiWMf5FLWfdLA" annotatedElement="_kEZoVDzEEeiWMf5FLWfdLA">
            <body>Identifies a VNFD.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoVjzEEeiWMf5FLWfdLA" name="vnfIndicator" type="_tEnEsDTSEeiwQ6KPLHcy4g">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoVzzEEeiWMf5FLWfdLA" annotatedElement="_kEZoVjzEEeiWMf5FLWfdLA">
            <body>Identifies a VNF indicator within the VNFD.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_iunqUCpAEemS0_wZSU3sbA" name="BlockStorageData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_2quzcCpAEemS0_wZSU3sbA" annotatedElement="_iunqUCpAEemS0_wZSU3sbA">
          <body>Specifies the details of the block storage resource.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4oVvoCpAEemS0_wZSU3sbA" name="sizeOfStorage" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Ah1bcCpBEemS0_wZSU3sbA" annotatedElement="_4oVvoCpAEemS0_wZSU3sbA">
            <body>Size of virtualised storage resource in GB.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_FFksYCpBEemS0_wZSU3sbA" name="vduStorageRequirements" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WRe-wCpBEemS0_wZSU3sbA" annotatedElement="_FFksYCpBEemS0_wZSU3sbA">
            <body>An array of key-value pairs that articulate the storage deployment requirements.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RXvooCpBEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RYMUkCpBEemS0_wZSU3sbA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_aQl4oCpBEemS0_wZSU3sbA" name="rdmaEnabled" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_l59vgCpBEemS0_wZSU3sbA" annotatedElement="_aQl4oCpBEemS0_wZSU3sbA">
            <body>Indicates if the storage supports rdma.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fA3wwCpBEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fBKrsCpBEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_p2pAcCpBEemS0_wZSU3sbA" name="swImageDesc" visibility="public" type="_J0Zx0DOSEeiHat9KcP8uWA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3hCT4CpBEemS0_wZSU3sbA" annotatedElement="_p2pAcCpBEemS0_wZSU3sbA">
            <body>Software image to be loaded on the VirtualStorage resource created based on this VirtualStorageDesc.&#xD;
Shall be absent when used for virtual disks.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_yPY0ECpBEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_yPh-ACpBEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_5p1FACpEEemS0_wZSU3sbA" name="ObjectStorageData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_CB48ICpFEemS0_wZSU3sbA" annotatedElement="_5p1FACpEEemS0_wZSU3sbA">
          <body>The ObjectStorageData information element specifies the details of object storage resource.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DVD0MCpFEemS0_wZSU3sbA" name="maxSizeOfStorage" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MOZMYCpFEemS0_wZSU3sbA" annotatedElement="_DVD0MCpFEemS0_wZSU3sbA">
            <body>Max size of virtualised storage resource in GB.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KbC_cCpFEemS0_wZSU3sbA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KbXvkCpFEemS0_wZSU3sbA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_OCLeMCpFEemS0_wZSU3sbA" name="FileStorageData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_TJwcACpFEemS0_wZSU3sbA" annotatedElement="_OCLeMCpFEemS0_wZSU3sbA">
          <body>The FileStorageData information element specifies the details of file storage resource.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Xbog4CpFEemS0_wZSU3sbA" name="sizeOfStorage" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_cCA2ICpFEemS0_wZSU3sbA" annotatedElement="_Xbog4CpFEemS0_wZSU3sbA">
            <body>Size of virtualised storage resource in GB.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_p3EKoDm0EeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fcJasCpFEemS0_wZSU3sbA" name="fileSystemProtocol" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_klw_4CpFEemS0_wZSU3sbA" annotatedElement="_fcJasCpFEemS0_wZSU3sbA">
            <body>The shared file system protocol (e.g. NFS, CIFS).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_pEem4CpFEemS0_wZSU3sbA" name="intVirtualLinkDesc" visibility="public" type="_-5-w8Cr9EemS0_wZSU3sbA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_06i18CpFEemS0_wZSU3sbA" annotatedElement="_pEem4CpFEemS0_wZSU3sbA">
            <body>Reference of the internal VLD which this file storage connects to.&#xD;
The attached VDUs shall connect to the same internal VLD.&#xD;
</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_hzvvUPxSEeijjKJn7OxwuQ" name="StorageQos">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tMfJMPxSEeijjKJn7OxwuQ" name="qosId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_C1n00PxTEeijjKJn7OxwuQ" annotatedElement="_tMfJMPxSEeijjKJn7OxwuQ">
            <body>Unique identifier of the storage Qos in VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tlqeMPxSEeijjKJn7OxwuQ" name="qosName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_uD6rAPxTEeijjKJn7OxwuQ" annotatedElement="_tlqeMPxSEeijjKJn7OxwuQ">
            <body>Name of storage QoS.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_nUxZ8BDBEemFz_A_9-IJMQ" name="consumer" type="_yPciUBDCEemFz_A_9-IJMQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="__2h_kBl0Eem_VM0Ij2_uSw" annotatedElement="_nUxZ8BDBEemFz_A_9-IJMQ">
            <body>Consumer type.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_43vsABDCEemFz_A_9-IJMQ" name="qosSpecs">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LFiSIBDDEemFz_A_9-IJMQ" annotatedElement="_43vsABDCEemFz_A_9-IJMQ">
            <body>Describe qualities of Qos:total_bytes_sec、total_iops_sec. </body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_EONN8BDDEemFz_A_9-IJMQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_EONN8RDDEemFz_A_9-IJMQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_cyGIcPxUEeijjKJn7OxwuQ" name="VolumeType">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qvf3cPxUEeijjKJn7OxwuQ" name="volumeTypeId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_yWO_UPxUEeijjKJn7OxwuQ" annotatedElement="_qvf3cPxUEeijjKJn7OxwuQ">
            <body>Unique identifier of volume type in VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_rBniMPxUEeijjKJn7OxwuQ" name="volumeTypeName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Zwh_cPxVEeijjKJn7OxwuQ" annotatedElement="_rBniMPxUEeijjKJn7OxwuQ">
            <body>Name of volume type.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_rVW9kPxUEeijjKJn7OxwuQ" name="backendName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_yb08ABDDEemFz_A_9-IJMQ" annotatedElement="_rVW9kPxUEeijjKJn7OxwuQ">
            <body>Backend volume name of cinder.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_BAt7gBx6Eemit6R65X1VNQ" name="VirtualLinkProtocolData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_2suxcDOqEemzC6274d_Yog" annotatedElement="_BAt7gBx6Eemit6R65X1VNQ">
          <body>The VirtualLinkProtocolData describes the protocol layer and associated protocol data for a virtual link</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_gKzRkBx9Eemit6R65X1VNQ" name="associatedLayerProtocol">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xhQLEDOqEemzC6274d_Yog" annotatedElement="_gKzRkBx9Eemit6R65X1VNQ">
            <body>One of the values of the attribute layerProtocol of the ConnectivityType IE.</body>
          </ownedComment>
          <type xmi:type="uml:Enumeration" href="Common.uml#_tFQGcDnLEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_geJEUBx9Eemit6R65X1VNQ" name="l2ProtocolData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sD2twBx-Eemit6R65X1VNQ" annotatedElement="_geJEUBx9Eemit6R65X1VNQ">
            <body>Specifies the L2 protocol data for this virtual link. Shall be present when the associatedLayerProtocol attribute indicates a L2 protocol and shall be absent otherwise.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_zxlckB8-EemJTaeYhZuDRA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HiTcYBx-Eemit6R65X1VNQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HidNYBx-Eemit6R65X1VNQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_gy064Bx9Eemit6R65X1VNQ" name="l3ProtocolData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_uZ0fkBx-Eemit6R65X1VNQ" annotatedElement="_gy064Bx9Eemit6R65X1VNQ">
            <body>Specifies the L3 protocol data for this virtual link. Shall be present when the associatedLayerProtocol attribute indicates a L3 protocol and shall be absent otherwise.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_4DfhMB8_EemJTaeYhZuDRA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_j1pWMBx-Eemit6R65X1VNQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_j1pWMRx-Eemit6R65X1VNQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_m4u3AC41EemS0_wZSU3sbA" name="VnfQoS">
        <ownedComment xmi:type="uml:Comment" xmi:id="_3Q70gC41EemS0_wZSU3sbA" annotatedElement="_m4u3AC41EemS0_wZSU3sbA">
          <body>The QoS as applied to the vnf.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_Bx_YcC42EemS0_wZSU3sbA">
          <general xmi:type="uml:DataType" href="Common.uml#_B1G2UDd_EeiIfPeSAqyGdQ"/>
        </generalization>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_T3At8ET8EemWRYeHGX88Yw" name="Direction">
        <ownedComment xmi:type="uml:Comment" xmi:id="_cDDiUET8EemWRYeHGX88Yw" annotatedElement="_T3At8ET8EemWRYeHGX88Yw">
          <body>Ingress or egress traffic</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_eYJKYET8EemWRYeHGX88Yw" name="INGRESS"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_hOtH0ET8EemWRYeHGX88Yw" name="EGRESS"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_MMdpkPg9EeqczaleenSRZA" name="VersionSelector">
        <ownedComment xmi:type="uml:Comment" xmi:id="_EkVoUPhCEeqczaleenSRZA">
          <body>The VersionSelector information element allows to identify the source and destination VNFDs (and implicitly, VNF packages) for a &quot;change current VNF Package&quot;, as well as the applicable source deployment flavour. The triplet (srcVnfdId, srcFlavourId, dstVnfdId) uniquely determines a change.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MMdpkfg9EeqczaleenSRZA" name="srcVnfId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gMGn0Pg9EeqczaleenSRZA">
            <body>Identifier of the source VNFD and the source VNF package.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MMdpkvg9EeqczaleenSRZA" name="dstVnfId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_jRhgoPg9EeqczaleenSRZA">
            <body>Identifier of the destination VNFD and the destination VNF package</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MMdpk_g9EeqczaleenSRZA" name="srcFlavourId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MMdplPg9EeqczaleenSRZA" annotatedElement="_MMdpk_g9EeqczaleenSRZA">
            <body>Identifier of the deployment flavour in the source VNF package for which this modification applies.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_J271QPhAEeqczaleenSRZA" name="ComponentMapping">
        <ownedComment xmi:type="uml:Comment" xmi:id="_K7GWEPhCEeqczaleenSRZA">
          <body>With respect to a &quot;change current VNF Package&quot; process, a ComponentMapping information element defines a mapping between the identifier of a components or property in the source VNFD and the identifier of the corresponding component or property in the destination VNFD. Examples for components are VDUs, VLDs, etc., and an example for a property is a scaling aspect of the VNF.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J271QfhAEeqczaleenSRZA" name="componentType">
          <ownedComment xmi:type="uml:Comment" xmi:id="_J271QvhAEeqczaleenSRZA" annotatedElement="_J271QfhAEeqczaleenSRZA">
            <body>The type of component or property.&#xD;Possible values differentiate whether changes concern to some VNF component (e.g. VDU, internal VLD, etc.) or property (e.g. a Scaling Aspect, etc.).</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J271Q_hAEeqczaleenSRZA" name="sourceDescId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_J271RPhAEeqczaleenSRZA" annotatedElement="_J271Q_hAEeqczaleenSRZA">
            <body>Identifier of the component or property in the source VNFD.	</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J271RfhAEeqczaleenSRZA" name="dstDescId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_J271RvhAEeqczaleenSRZA" annotatedElement="_J271RfhAEeqczaleenSRZA">
            <body>Identifier of the component or property in 	the destination VNFD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J271R_hAEeqczaleenSRZA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_J271SPhAEeqczaleenSRZA" annotatedElement="_J271R_hAEeqczaleenSRZA">
            <body>Human readable description of the&#xD;component changes.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EString"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Sl0mEPhCEeqczaleenSRZA"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_rqNLwATTEeuUzLXQ51gGgw" name="AdditionalServiceData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_rqNLwQTTEeuUzLXQ51gGgw" annotatedElement="_rqNLwATTEeuUzLXQ51gGgw">
          <body>This information element describes the additional service data of the VirtualCp used to expose properties of the VirtualCp to NFV-MANO.&#xD;
If the VirtualCp is exposed by a VNF component realized by one or a set of OS containers, the properties are mirrored from the declarative descriptor of the corresponding MCIO where available.&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_a_8_gATUEeuUzLXQ51gGgw" name="portData" type="_qVEPsATREeuUzLXQ51gGgw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_a_8_gQTUEeuUzLXQ51gGgw" annotatedElement="_a_8_gATUEeuUzLXQ51gGgw">
            <body>Service port numbers exposed by the VirtualCp.</body>
          </ownedComment>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5LUK4ATUEeuUzLXQ51gGgw" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_p-5EAATUEeuUzLXQ51gGgw" name="serviceData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_p-5EAQTUEeuUzLXQ51gGgw" annotatedElement="_p-5EAATUEeuUzLXQ51gGgw">
            <body>Service matching information exposed by the VirtualCp
NOTE: 	This attribute shall only be present if additional information is needed to identify the service termination within the VNF, such as for example a url path information in an HTTP request required to allow a single VirtualCp IP address to be used for several HTTP based services that use the same portnumber.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_6kGiwATUEeuUzLXQ51gGgw"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_qVEPsATREeuUzLXQ51gGgw" name="ServicePortData">
        <ownedComment xmi:type="uml:Comment" xmi:id="_wcpR8ATREeuUzLXQ51gGgw" annotatedElement="_qVEPsATREeuUzLXQ51gGgw">
          <body>This information element describes the service identifying port properties exposed by the VirtualCp.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_6ZDQsATREeuUzLXQ51gGgw" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6ZDQsQTREeuUzLXQ51gGgw" annotatedElement="_6ZDQsATREeuUzLXQ51gGgw">
            <body>The name of the port exposed by the VirtualCp.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_NSuscATSEeuUzLXQ51gGgw" name="protocol">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NSuscQTSEeuUzLXQ51gGgw" annotatedElement="_NSuscATSEeuUzLXQ51gGgw">
            <body>The L4 protocol for this port exposed by the VirtualCp.&#xD;
VALUES:&#xD;
•	TCP&#xD;
•	UDP&#xD;
•	SCTP</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_UwllIATSEeuUzLXQ51gGgw" name="port">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UwllIQTSEeuUzLXQ51gGgw" annotatedElement="_UwllIATSEeuUzLXQ51gGgw">
            <body>The L4 port number exposed by the VirtualCp.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ehoocATSEeuUzLXQ51gGgw" name="portConfigurable">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ehoocQTSEeuUzLXQ51gGgw" annotatedElement="_ehoocATSEeuUzLXQ51gGgw">
            <body>Specifies whether the port attribute value is allowed to be configurable.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
        </ownedAttribute>
      </packagedElement>
    </packagedElement>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_0Mc-4D2KEeiFiY3bcpqGkg">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_BXttMDksEemjyLkBMGZA1g" source="PapyrusVersion">
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BXttMTksEemjyLkBMGZA1g" key="Version" value="0.2.15"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BXttMjksEemjyLkBMGZA1g" key="Comment" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BXttMzksEemjyLkBMGZA1g" key="Copyright" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BXttNDksEemjyLkBMGZA1g" key="Date" value="2019-02-25"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BXttNTksEemjyLkBMGZA1g" key="Author" value=""/>
      </eAnnotations>
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_0MgpQD2KEeiFiY3bcpqGkg" source="http://www.eclipse.org/uml2/2.0.0/UML">
        <references xmi:type="ecore:EPackage" href="OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g"/>
      </eAnnotations>
      <appliedProfile xmi:type="uml:Profile" href="OpenModel_Profile.profile.uml#_m1xqsHBgEd6FKu9XX1078A"/>
    </profileApplication>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_BVoS8C4-EemS0_wZSU3sbA">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_BVxc4C4-EemS0_wZSU3sbA" source="http://www.eclipse.org/uml2/2.0.0/UML">
        <references xmi:type="ecore:EPackage" href="pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#_Kv8EIKFXEeS_KNX0nfvIVQ"/>
      </eAnnotations>
      <appliedProfile xmi:type="uml:Profile" href="pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#ActionLanguage"/>
    </profileApplication>
  </uml:Package>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONpBgzaIEei23_xWdimG9w" base_StructuralFeature="_u3j0EDOVEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONpokTaIEei23_xWdimG9w" base_StructuralFeature="_vRy4kDQPEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONqPojaIEei23_xWdimG9w" base_StructuralFeature="_zxbfEDQvEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONq2sDaIEei23_xWdimG9w" base_StructuralFeature="_LOOoEjQtEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONrdwDaIEei23_xWdimG9w" base_StructuralFeature="_7QN84jTUEeiwQ6KPLHcy4g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nXzXUDkOEeiWMf5FLWfdLA" base_StructuralFeature="_nXywQjkOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONrdwzaIEei23_xWdimG9w" base_StructuralFeature="_j-D2MDWeEei9Ia34RXjpEg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_346rIDabEei23_xWdimG9w" base_StructuralFeature="_346EEDabEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uwFzgDadEei23_xWdimG9w" base_StructuralFeature="_uwFMcTadEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Mx024TagEei23_xWdimG9w" base_StructuralFeature="_Mx024DagEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xRw2QzdyEeiIfPeSAqyGdQ" base_StructuralFeature="_xRw2QjdyEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xR4LATdyEeiIfPeSAqyGdQ" base_StructuralFeature="_xR4LADdyEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uf1AUDdVEeiIfPeSAqyGdQ" base_StructuralFeature="_uf0ZQDdVEeiIfPeSAqyGdQ" support="CONDITIONAL_MANDATORY" condition="Either intVirtualLinkDesc or intCpd shall be present."/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uf1nYTdVEeiIfPeSAqyGdQ" base_StructuralFeature="_uf1nYDdVEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uohQ8zgTEeiOYfGHew0BGg" base_StructuralFeature="_uohQ8jgTEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uok7UTgTEeiOYfGHew0BGg" base_StructuralFeature="_uok7UDgTEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_guVSQjm5EeiWMf5FLWfdLA" base_StructuralFeature="_guVSQTm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Y8jB4TnCEeiWMf5FLWfdLA" base_StructuralFeature="_Y8jB4DnCEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OCgLoDnBEeiWMf5FLWfdLA" base_StructuralFeature="_OCfkkTnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UZScojnDEeiWMf5FLWfdLA" base_StructuralFeature="_UZScoTnDEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KN_NojnAEeiWMf5FLWfdLA" base_StructuralFeature="_KN_NoTnAEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hz7WcTm7EeiWMf5FLWfdLA" base_StructuralFeature="_hz7WcDm7EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PJnV8DnHEeiWMf5FLWfdLA" base_StructuralFeature="_PJmu4jnHEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8qIn4j5xEeijbdkIlrq2uQ" base_StructuralFeature="_8qIn4T5xEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONsE0DaIEei23_xWdimG9w" base_Class="_e5WnwDOREeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsE0TaIEei23_xWdimG9w" base_StructuralFeature="_l8PhgDWbEei9Ia34RXjpEg" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsE0jaIEei23_xWdimG9w" base_StructuralFeature="_wWU6wDWbEei9Ia34RXjpEg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsE0zaIEei23_xWdimG9w" base_StructuralFeature="_2-9boDWbEei9Ia34RXjpEg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mq0DkTafEei23_xWdimG9w" base_StructuralFeature="_mq0DkDafEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1yYfoDafEei23_xWdimG9w" base_StructuralFeature="_1yX4kDafEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HN-FIDmzEeiWMf5FLWfdLA" base_StructuralFeature="_HN9eEDmzEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mIpmITapEei23_xWdimG9w" base_StructuralFeature="_mIpmIDapEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mC_G8DmyEeiWMf5FLWfdLA" base_StructuralFeature="_mC-f4DmyEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONrdwjaIEei23_xWdimG9w" base_StructuralFeature="_j9-9sDWeEei9Ia34RXjpEg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_345dATabEei23_xWdimG9w" base_StructuralFeature="_345dADabEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uwIPwDadEei23_xWdimG9w" base_StructuralFeature="_uwHosDadEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Mx0P0DagEei23_xWdimG9w" base_StructuralFeature="_MxzowjagEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONsr4DaIEei23_xWdimG9w" base_Class="_aaEZADOREeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsr4jaIEei23_xWdimG9w" base_StructuralFeature="_Sz6jIDOVEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsr4zaIEei23_xWdimG9w" base_StructuralFeature="_hUYi8DOVEeiHat9KcP8uWA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsr5DaIEei23_xWdimG9w" base_StructuralFeature="_Psi3oDOXEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONtS8DaIEei23_xWdimG9w" base_StructuralFeature="_Txwn0DQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONtS8TaIEei23_xWdimG9w" base_StructuralFeature="_d9nX0DQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONtS8jaIEei23_xWdimG9w" base_StructuralFeature="_nVSR0DQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONtS8zaIEei23_xWdimG9w" base_StructuralFeature="_zS9kwDQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONtS9DaIEei23_xWdimG9w" base_StructuralFeature="_-WAbcDQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CnvFoTkKEeiWMf5FLWfdLA" base_StructuralFeature="_CnvFoDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONsr4TaIEei23_xWdimG9w" base_StructuralFeature="_qFisADOUEeiHat9KcP8uWA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONt6ADaIEei23_xWdimG9w" base_StructuralFeature="_IW__QDQMEeixv_sLOod4lQ" support="CONDITIONAL_MANDATORY" condition="Shall be present if &quot;localizationLanguage&quot; is present and shall be absent otherwise."/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zr_UgDkIEeiWMf5FLWfdLA" base_StructuralFeature="_zr-tcDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HkmLwDkLEeiWMf5FLWfdLA" base_StructuralFeature="_HklksDkLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONpokDaIEei23_xWdimG9w" base_StructuralFeature="_vRv1QDQPEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONq2sTaIEei23_xWdimG9w" base_StructuralFeature="_LORrYDQtEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONqPoTaIEei23_xWdimG9w" base_StructuralFeature="_zxa4AzQvEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONrdwTaIEei23_xWdimG9w" base_StructuralFeature="_7QOj8DTUEeiwQ6KPLHcy4g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONpBgjaIEei23_xWdimG9w" base_StructuralFeature="_u3gwwDOVEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nXw7EDkOEeiWMf5FLWfdLA" base_StructuralFeature="_nXwUATkOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONt6BDaIEei23_xWdimG9w" base_Class="_J0Zx0DOSEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lDoCUTaqEei23_xWdimG9w" base_StructuralFeature="_lDoCUDaqEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_v5FwATaqEei23_xWdimG9w" base_StructuralFeature="_v5FwADaqEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OYLvsTarEei23_xWdimG9w" base_StructuralFeature="_OYLvsDarEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bcIHIDarEei23_xWdimG9w" base_StructuralFeature="_bcG5ADarEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_k5xtUDarEei23_xWdimG9w" base_StructuralFeature="_k5xGQDarEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9W_HATm0EeiWMf5FLWfdLA" base_StructuralFeature="_9W_HADm0EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_svqrgTarEei23_xWdimG9w" base_StructuralFeature="_svqrgDarEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SW1lEDm1EeiWMf5FLWfdLA" base_StructuralFeature="_SW0-ADm1EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DhvVITasEei23_xWdimG9w" base_StructuralFeature="_DhvVIDasEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QAAzsTasEei23_xWdimG9w" base_StructuralFeature="_QAAzsDasEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONt6BTaIEei23_xWdimG9w" base_Class="_ISONYDOSEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bEqsgTdzEeiIfPeSAqyGdQ" base_StructuralFeature="_bEqsgDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cCrM4TdzEeiIfPeSAqyGdQ" base_StructuralFeature="_cCrM4DdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dFetsTdzEeiIfPeSAqyGdQ" base_StructuralFeature="_dFetsDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dl56MDdzEeiIfPeSAqyGdQ" base_StructuralFeature="_dl5TIDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ehkRMTdzEeiIfPeSAqyGdQ" base_StructuralFeature="_ehkRMDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fXB5kTdzEeiIfPeSAqyGdQ" base_StructuralFeature="_fXB5kDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONuhEDaIEei23_xWdimG9w" base_Class="_-gDvwDOREeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CEEAwDatEei23_xWdimG9w" base_StructuralFeature="_CEDZsDatEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_S4W1oTazEei23_xWdimG9w" base_StructuralFeature="_S4W1oDazEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cn9ugTazEei23_xWdimG9w" base_StructuralFeature="_cn9ugDazEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6gNwoDazEei23_xWdimG9w" base_StructuralFeature="_6gNJkDazEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1izJgDa1Eei23_xWdimG9w" base_StructuralFeature="_1iyicDa1Eei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONuhEjaIEei23_xWdimG9w" base_Class="_K_9mADOSEeiHat9KcP8uWA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4zAhUDdKEeiIfPeSAqyGdQ" base_StructuralFeature="_4y_6QDdKEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6sJ0QTdKEeiIfPeSAqyGdQ" base_StructuralFeature="_6sJ0QDdKEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7J5gMDdKEeiIfPeSAqyGdQ" base_StructuralFeature="_7J45IDdKEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONvIIDaIEei23_xWdimG9w" base_Class="_zOfv8DQVEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7nJYsTdREeiIfPeSAqyGdQ" base_StructuralFeature="_7nJYsDdREeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7dX8MTdSEeiIfPeSAqyGdQ" base_StructuralFeature="_7dX8MDdSEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8R7loTdSEeiIfPeSAqyGdQ" base_StructuralFeature="_8R7loDdSEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_875IoTdSEeiIfPeSAqyGdQ" base_StructuralFeature="_875IoDdSEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_guUEIDm5EeiWMf5FLWfdLA" base_StructuralFeature="_guTdEjm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONvvMTaIEei23_xWdimG9w" base_Class="_p0UVsDQvEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vbvVgTeCEeiIfPeSAqyGdQ" base_StructuralFeature="_vbvVgDeCEeiIfPeSAqyGdQ" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2cgCgTeCEeiIfPeSAqyGdQ" base_StructuralFeature="_2cgCgDeCEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KN9YcjnAEeiWMf5FLWfdLA" base_StructuralFeature="_KN9YcTnAEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OCdvYjnBEeiWMf5FLWfdLA" base_StructuralFeature="_OCdvYTnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Y7kKcDnCEeiWMf5FLWfdLA" base_StructuralFeature="_Y7jjYTnCEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UZQncznDEeiWMf5FLWfdLA" base_StructuralFeature="_UZQncjnDEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8qHZwD5xEeijbdkIlrq2uQ" base_StructuralFeature="_8qGysD5xEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONvvMjaIEei23_xWdimG9w" base_Class="_AmzWYDQtEeixv_sLOod4lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hzHeIDm7EeiWMf5FLWfdLA" base_StructuralFeature="_hzG3ETm7EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ONwWQjaIEei23_xWdimG9w" base_Class="_tEnEsDTSEeiwQ6KPLHcy4g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_a5biQTg2EeiOYfGHew0BGg" base_StructuralFeature="_a5biQDg2EeiOYfGHew0BGg" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_btdnQDg2EeiOYfGHew0BGg" base_StructuralFeature="_btdAMDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cggNwTg2EeiOYfGHew0BGg" base_StructuralFeature="_cggNwDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dP31MTg2EeiOYfGHew0BGg" base_StructuralFeature="_dP31MDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_oFQM8Td-EeiIfPeSAqyGdQ" base_Class="_oFQM8Dd-EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_v0nsYTd-EeiIfPeSAqyGdQ" base_StructuralFeature="_v0nsYDd-EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uXG-oDnFEeiWMf5FLWfdLA" base_StructuralFeature="_uXGXkDnFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_0lwWUDgREeiOYfGHew0BGg" base_Class="_0lvvQDgREeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uA9sQDgUEeiOYfGHew0BGg" base_StructuralFeature="_uA9FMDgUEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2_AI0DgVEeiOYfGHew0BGg" base_StructuralFeature="_2-_hwDgVEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_s7WyQTgYEeiOYfGHew0BGg" base_StructuralFeature="_s7WyQDgYEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_8BU-0Dm4EeiWMf5FLWfdLA" base_Class="_8BUXwDm4EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H9PXMTm5EeiWMf5FLWfdLA" base_StructuralFeature="_H9PXMDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H9RMYTm5EeiWMf5FLWfdLA" base_StructuralFeature="_H9RMYDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H9SagTm5EeiWMf5FLWfdLA" base_StructuralFeature="_H9SagDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H9UPsDm5EeiWMf5FLWfdLA" base_StructuralFeature="_H9TooDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_6C8s8DnAEeiWMf5FLWfdLA" base_Class="_6C8F4DnAEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Y6HcIDnGEeiWMf5FLWfdLA" base_StructuralFeature="_Y6Fm8DnGEeiWMf5FLWfdLA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jVi5MDnGEeiWMf5FLWfdLA" base_StructuralFeature="_jViSIDnGEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_f1tqYDnIEeiWMf5FLWfdLA" base_StructuralFeature="_f1tDUDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PJlgwDnHEeiWMf5FLWfdLA" base_StructuralFeature="_PJk5sjnHEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_DlPQoDnDEeiWMf5FLWfdLA" base_Class="_DlOpkDnDEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_DZsyMTnHEeiWMf5FLWfdLA" base_Class="_DZsyMDnHEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Eu4KgDnJEeiWMf5FLWfdLA" base_StructuralFeature="_Eu3jcDnJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_d8Gh0TaxEei23_xWdimG9w" base_StructuralFeature="_d8Gh0DaxEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j_7h8TawEei23_xWdimG9w" base_StructuralFeature="_j_7h8DawEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4g-HoTaxEei23_xWdimG9w" base_StructuralFeature="_4g-HoDaxEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EHA9sTayEei23_xWdimG9w" base_StructuralFeature="_EHA9sDayEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_M3Ly0TayEei23_xWdimG9w" base_StructuralFeature="_M3Ly0DayEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HJMDUTa0Eei23_xWdimG9w" base_StructuralFeature="_HJMDUDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TXQisTa0Eei23_xWdimG9w" base_StructuralFeature="_TXQisDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_c4PwwDa0Eei23_xWdimG9w" base_StructuralFeature="_c4PJsDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mxsiITa0Eei23_xWdimG9w" base_StructuralFeature="_mxsiIDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KD9OgDa4EeivvI-m1BaAbA" base_StructuralFeature="_KD8ncDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WF4IQDa4EeivvI-m1BaAbA" base_StructuralFeature="_WF3hMDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_c2xNQDa4EeivvI-m1BaAbA" base_StructuralFeature="_c2wmMDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mqETUTa4EeivvI-m1BaAbA" base_StructuralFeature="_mqETUDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vD0MgTa4EeivvI-m1BaAbA" base_StructuralFeature="_vD0MgDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3WVcUDa4EeivvI-m1BaAbA" base_StructuralFeature="_3WU1QDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gv2iMTa5EeivvI-m1BaAbA" base_StructuralFeature="_gv2iMDa5EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_heqI8Ta5EeivvI-m1BaAbA" base_StructuralFeature="_heqI8Da5EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pswrQDkIEeiWMf5FLWfdLA" base_StructuralFeature="_pslFEDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pxWQUDkIEeiWMf5FLWfdLA" base_StructuralFeature="_pxVpQDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pxdlEzkIEeiWMf5FLWfdLA" base_StructuralFeature="_pxdlEDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vYozgDkJEeiWMf5FLWfdLA" base_StructuralFeature="_vYoMcDkJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vYtE8DkJEeiWMf5FLWfdLA" base_StructuralFeature="_vYsd4DkJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9xG4cDkKEeiWMf5FLWfdLA" base_StructuralFeature="_9xGRYDkKEeiWMf5FLWfdLA" support="CONDITIONAL_MANDATORY" condition="At least one of the 2 attributes event or lcmTransitionEvent shall be included"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9xO0RDkKEeiWMf5FLWfdLA" base_StructuralFeature="_9xO0QDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9xRQgDkKEeiWMf5FLWfdLA" base_StructuralFeature="_9xQpcDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9xWJADkKEeiWMf5FLWfdLA" base_StructuralFeature="_9xU64DkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9xZMUDkKEeiWMf5FLWfdLA" base_StructuralFeature="_9xYlQDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Zcc5sDmxEeiWMf5FLWfdLA" base_StructuralFeature="_ZccSoDmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZcmqtDmxEeiWMf5FLWfdLA" base_StructuralFeature="_ZcmqsDmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Zcn40TmxEeiWMf5FLWfdLA" base_StructuralFeature="_Zcn40DmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZcpuADmxEeiWMf5FLWfdLA" base_StructuralFeature="_ZcpG8DmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aws6YDmyEeiWMf5FLWfdLA" base_StructuralFeature="_awsTUDmyEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KFKvMDnIEeiWMf5FLWfdLA" base_StructuralFeature="_KFKIIDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SHcjkDnIEeiWMf5FLWfdLA" base_StructuralFeature="_SHb8gDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_jKtzYF3PEeiwL5tPgFMcjQ" base_Class="_jH_PgF3PEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xSoLcF3eEeiwL5tPgFMcjQ" base_StructuralFeature="_xSnkYF3eEeiwL5tPgFMcjQ" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HY63sV3gEeiwL5tPgFMcjQ" base_StructuralFeature="_HY63sF3gEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_D0XjIV3xEeiwL5tPgFMcjQ" base_StructuralFeature="_D0XjIF3xEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_b9BWcF33EeiwL5tPgFMcjQ" base_StructuralFeature="_b9AvYF33EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yX1WoF33EeiwL5tPgFMcjQ" base_StructuralFeature="_yX0vkF33EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2BvAEV34EeiwL5tPgFMcjQ" base_StructuralFeature="_2BvAEF34EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_B2EJwV35EeiwL5tPgFMcjQ" base_StructuralFeature="_B2EJwF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PjxP4F35EeiwL5tPgFMcjQ" base_StructuralFeature="_Pjwo0F35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_s23WgV35EeiwL5tPgFMcjQ" base_StructuralFeature="_s23WgF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_t2N6sV35EeiwL5tPgFMcjQ" base_StructuralFeature="_t2N6sF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_u8xTEF35EeiwL5tPgFMcjQ" base_StructuralFeature="_u8wsAF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wvHacF35EeiwL5tPgFMcjQ" base_StructuralFeature="_wvGzYF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xjTQcF35EeiwL5tPgFMcjQ" base_StructuralFeature="_xjSpYF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4zo_oF37Eei-d9bwZwcVEw" base_StructuralFeature="_4zoYkF37Eei-d9bwZwcVEw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lfp0MF4AEei-d9bwZwcVEw" base_StructuralFeature="_lfpNIF4AEei-d9bwZwcVEw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mlc-oV4AEei-d9bwZwcVEw" base_StructuralFeature="_mlc-oF4AEei-d9bwZwcVEw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Opdo0F9vEeiaLPXj8My4aQ" base_Class="_OpdBwF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dWI4oF9vEeiaLPXj8My4aQ" base_StructuralFeature="_dWIRkF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fIfAAV9vEeiaLPXj8My4aQ" base_StructuralFeature="_fIfAAF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fpzkYV9vEeiaLPXj8My4aQ" base_StructuralFeature="_fpzkYF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gjdwQV9vEeiaLPXj8My4aQ" base_StructuralFeature="_gjdwQF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lCwmEF9vEeiaLPXj8My4aQ" base_StructuralFeature="_lCv_AF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mDlw8V9vEeiaLPXj8My4aQ" base_StructuralFeature="_mDlw8F9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_m9TAIV9vEeiaLPXj8My4aQ" base_StructuralFeature="_m9TAIF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_utZfYV9vEeiaLPXj8My4aQ" base_StructuralFeature="_utZfYF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vneiAF9vEeiaLPXj8My4aQ" base_StructuralFeature="_vnd68F9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_whdeAV9vEeiaLPXj8My4aQ" base_StructuralFeature="_whdeAF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HAitoV-FEeiaLPXj8My4aQ" base_StructuralFeature="_HAitoF-FEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HAj7wV-FEeiaLPXj8My4aQ" base_StructuralFeature="_HAj7wF-FEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_B2hqYF-GEeiaLPXj8My4aQ" base_Class="_B2hDUF-GEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OXq2wl-GEeiaLPXj8My4aQ" base_StructuralFeature="_OXq2wV-GEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OX0nwV-GEeiaLPXj8My4aQ" base_StructuralFeature="_OX0nwF-GEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Ng8joGN3Eeio9amveq0yWQ" base_StructuralFeature="_Ng78kGN3Eeio9amveq0yWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lYH-smN4Eeio9amveq0yWQ" base_StructuralFeature="_lYH-sGN4Eeio9amveq0yWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oQAKwmN4Eeio9amveq0yWQ" base_StructuralFeature="_oQAKwGN4Eeio9amveq0yWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2YlPAGN4Eeio9amveq0yWQ" base_StructuralFeature="_2Ykn8GN4Eeio9amveq0yWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WbP6QGN5Eeio9amveq0yWQ" base_StructuralFeature="_WbPTMGN5Eeio9amveq0yWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PG3z0WkCEeip9umi7zNprw" base_StructuralFeature="_PG3MwGkCEeip9umi7zNprw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PG5B82kCEeip9umi7zNprw" base_StructuralFeature="_PG5B8WkCEeip9umi7zNprw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_taAyAGmNEeiIM-XECFR2Pw" base_StructuralFeature="_tZ9usGmNEeiIM-XECFR2Pw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_taTs8WmNEeiIM-XECFR2Pw" base_StructuralFeature="_taTF4GmNEeiIM-XECFR2Pw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_TuSmgH7dEei4v5WRHqfM1Q" base_Class="_TuRYYH7dEei4v5WRHqfM1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_inPiUX7eEei4v5WRHqfM1Q" base_StructuralFeature="_inPiUH7eEei4v5WRHqfM1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_inQwc37eEei4v5WRHqfM1Q" base_StructuralFeature="_inQwcn7eEei4v5WRHqfM1Q"/>
  <OpenModel_Profile:Obsolete xmi:id="_PAg94JTYEeiYXO5wr78TUw" base_Element="_mqETUDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Obsolete xmi:id="_Rur0UJTYEeiYXO5wr78TUw" base_Element="_3WU1QDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Obsolete xmi:id="_nXoSsJTYEeiYXO5wr78TUw" base_Element="_gv2iMDa5EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Obsolete xmi:id="_oh9-4JTYEeiYXO5wr78TUw" base_Element="_heqI8Da5EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Obsolete xmi:id="_rgio0JTYEeiYXO5wr78TUw" base_Element="_dSO64DawEei23_xWdimG9w"/>
  <OpenModel_Profile:Obsolete xmi:id="_u499MJTYEeiYXO5wr78TUw" base_Element="_4g-HoDaxEei23_xWdimG9w"/>
  <OpenModel_Profile:Obsolete xmi:id="_v7ejEJTYEeiYXO5wr78TUw" base_Element="_EHA9sDayEei23_xWdimG9w"/>
  <OpenModel_Profile:Obsolete xmi:id="_xFmM0JTYEeiYXO5wr78TUw" base_Element="_j_7h8DawEei23_xWdimG9w"/>
  <OpenModel_Profile:Obsolete xmi:id="_yLk9cJTYEeiYXO5wr78TUw" base_Element="_d8Gh0DaxEei23_xWdimG9w"/>
  <OpenModel_Profile:Obsolete xmi:id="_zr0BIJTYEeiYXO5wr78TUw" base_Element="_M3Ly0DayEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_0G1fgJT0EeiYXO5wr78TUw" base_Element="_8BUXwDm4EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_2jFfgJT0EeiYXO5wr78TUw" base_Element="_H9PXMDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_PZVAUJT1EeiYXO5wr78TUw" base_Element="_H9RMYDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_QcLkcJT1EeiYXO5wr78TUw" base_Element="_H9SagDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_TCrFkJT1EeiYXO5wr78TUw" base_Element="_H9TooDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_VFbyEJT2EeiYXO5wr78TUw" base_Element="_zOfv8DQVEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_WExIIJT2EeiYXO5wr78TUw" base_Element="_7nJYsDdREeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_XG894JT2EeiYXO5wr78TUw" base_Element="_8R7loDdSEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YAWEAJT2EeiYXO5wr78TUw" base_Element="_7dX8MDdSEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YzG9sJT2EeiYXO5wr78TUw" base_Element="_875IoDdSEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_cThwcJT2EeiYXO5wr78TUw" base_Element="_aaEZADOREeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_dpYJEJT2EeiYXO5wr78TUw" base_Element="_Sz6jIDOVEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_e6OF4JT2EeiYXO5wr78TUw" base_Element="_qFisADOUEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_f39ggJT2EeiYXO5wr78TUw" base_Element="_hUYi8DOVEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_gyhEQJT2EeiYXO5wr78TUw" base_Element="_Psi3oDOXEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_h0AWcJT2EeiYXO5wr78TUw" base_Element="_Txwn0DQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_inaJUJT2EeiYXO5wr78TUw" base_Element="_d9nX0DQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_jbFpAJT2EeiYXO5wr78TUw" base_Element="_nVSR0DQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_kKj-IJT2EeiYXO5wr78TUw" base_Element="_zS9kwDQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_lANMsJT2EeiYXO5wr78TUw" base_Element="_-WAbcDQLEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_lziuIJT2EeiYXO5wr78TUw" base_Element="_IW__QDQMEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_oFOc4JT2EeiYXO5wr78TUw" base_Element="_CnvFoDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_pD4dgJT2EeiYXO5wr78TUw" base_Element="_zr-tcDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_p35UYJT2EeiYXO5wr78TUw" base_Element="_HklksDkLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_0deL8JT2EeiYXO5wr78TUw" base_Element="_0lvvQDgREeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_1cGXYJT2EeiYXO5wr78TUw" base_Element="_uA9FMDgUEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_3WCUgJT2EeiYXO5wr78TUw" base_Element="_2-_hwDgVEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_4T-jcJT2EeiYXO5wr78TUw" base_Element="_s7WyQDgYEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_HjFx8JT3EeiYXO5wr78TUw" base_Element="_oFQM8Dd-EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_IrN3oJT3EeiYXO5wr78TUw" base_Element="_v0nsYDd-EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_-2rJgJT4EeiYXO5wr78TUw" base_Element="_AmzWYDQtEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_DQS1IJT5EeiYXO5wr78TUw" base_Element="_e5WnwDOREeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_ETQG8JT5EeiYXO5wr78TUw" base_Element="_l8PhgDWbEei9Ia34RXjpEg"/>
  <OpenModel_Profile:Preliminary xmi:id="_FelRoJT5EeiYXO5wr78TUw" base_Element="_wWU6wDWbEei9Ia34RXjpEg"/>
  <OpenModel_Profile:Preliminary xmi:id="_HVpg8JT5EeiYXO5wr78TUw" base_Element="_2-9boDWbEei9Ia34RXjpEg"/>
  <OpenModel_Profile:Preliminary xmi:id="_IWi9QJT5EeiYXO5wr78TUw" base_Element="_mq0DkDafEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_MK3jcJT5EeiYXO5wr78TUw" base_Element="_1yX4kDafEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_NAJloJT5EeiYXO5wr78TUw" base_Element="_mIpmIDapEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_qHd6EJT5EeiYXO5wr78TUw" base_Element="_uXGXkDnFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_wTMcgJT5EeiYXO5wr78TUw" base_Element="_tEnEsDTSEeiwQ6KPLHcy4g"/>
  <OpenModel_Profile:Preliminary xmi:id="_xVlGkJT5EeiYXO5wr78TUw" base_Element="_a5biQDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_yMGe4JT5EeiYXO5wr78TUw" base_Element="_btdAMDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_zChwkJT5EeiYXO5wr78TUw" base_Element="_cggNwDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_2OIJ4JT5EeiYXO5wr78TUw" base_Element="_dP31MDg2EeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_KwokoJT6EeiYXO5wr78TUw" base_Element="_-gDvwDOREeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_LvyUgJT6EeiYXO5wr78TUw" base_Element="_CEDZsDatEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_NpAf8JT6EeiYXO5wr78TUw" base_Element="_cn9ugDazEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_PgxS0JT6EeiYXO5wr78TUw" base_Element="_6gNJkDazEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_RGLxcJT6EeiYXO5wr78TUw" base_Element="_1iyicDa1Eei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_TZG2UJT6EeiYXO5wr78TUw" base_Element="_p0UVsDQvEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_X2Q-IJT6EeiYXO5wr78TUw" base_Element="_2cgCgDeCEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_Yw2XEJT6EeiYXO5wr78TUw" base_Element="_vbvVgDeCEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_bslvcJT6EeiYXO5wr78TUw" base_Element="_K_9mADOSEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_aVFCkJT9EeiYXO5wr78TUw" base_Element="_HN9eEDmzEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_b5mJUJT9EeiYXO5wr78TUw" base_Element="_J0Zx0DOSEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_cukpgJT9EeiYXO5wr78TUw" base_Element="_lDoCUDaqEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_dipKwJT9EeiYXO5wr78TUw" base_Element="_v5FwADaqEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_eOHwsJT9EeiYXO5wr78TUw" base_Element="_OYLvsDarEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_f7M9kJT9EeiYXO5wr78TUw" base_Element="_bcG5ADarEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_gzc0MJT9EeiYXO5wr78TUw" base_Element="_k5xGQDarEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_hk9wsJT9EeiYXO5wr78TUw" base_Element="_svqrgDarEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_jPJakJT9EeiYXO5wr78TUw" base_Element="_DhvVIDasEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_kF4OQJT9EeiYXO5wr78TUw" base_Element="_QAAzsDasEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_k24NYJT9EeiYXO5wr78TUw" base_Element="_9W_HADm0EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_okUIcJT9EeiYXO5wr78TUw" base_Element="_SW0-ADm1EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_wwBloJT9EeiYXO5wr78TUw" base_Element="_4y_6QDdKEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_yaOdoJT9EeiYXO5wr78TUw" base_Element="_7J45IDdKEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Experimental xmi:id="_Ta13gJUBEeiYXO5wr78TUw" base_Element="_DlOpkDnDEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_dvFHcJUBEeiYXO5wr78TUw" base_Element="_ISONYDOSEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_fhlm4JUBEeiYXO5wr78TUw" base_Element="_bEqsgDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_gUAiUJUBEeiYXO5wr78TUw" base_Element="_dFetsDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_hMMukJUBEeiYXO5wr78TUw" base_Element="_cCrM4DdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_h8-rQJUBEeiYXO5wr78TUw" base_Element="_dl5TIDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_i3xfkJUBEeiYXO5wr78TUw" base_Element="_ehkRMDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_kswEMJUBEeiYXO5wr78TUw" base_Element="_fXB5kDdzEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_sdp0sJUBEeiYXO5wr78TUw" base_Element="_6C8F4DnAEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_z5L8sJUCEeiYXO5wr78TUw" base_Element="_Y6Fm8DnGEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_030vMJUCEeiYXO5wr78TUw" base_Element="_jViSIDnGEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_1-YuoJUCEeiYXO5wr78TUw" base_Element="_f1tDUDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_3CVe8JUCEeiYXO5wr78TUw" base_Element="_PJk5sjnHEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_BPOwwJUDEeiYXO5wr78TUw" base_Element="_DZsyMDnHEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_DYdHEJUDEeiYXO5wr78TUw" base_Element="_Eu3jcDnJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_sbe_kJUDEeiYXO5wr78TUw" base_Element="_jH_PgF3PEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_xLACsJUDEeiYXO5wr78TUw" base_Element="_b9AvYF33EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_zYnJwJUDEeiYXO5wr78TUw" base_Element="_2BvAEF34EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_2uVvcJUDEeiYXO5wr78TUw" base_Element="_lfpNIF4AEei-d9bwZwcVEw"/>
  <OpenModel_Profile:Experimental xmi:id="_3-oSoJUDEeiYXO5wr78TUw" base_Element="_mlc-oF4AEei-d9bwZwcVEw"/>
  <OpenModel_Profile:Experimental xmi:id="_PWDFAJUEEeiYXO5wr78TUw" base_Element="_B2EJwF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_RudG0JUEEeiYXO5wr78TUw" base_Element="_OpdBwF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_S-4z8JUEEeiYXO5wr78TUw" base_Element="_dWIRkF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_ggXb8JUEEeiYXO5wr78TUw" base_Element="_fIfAAF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_t-CskJUFEeiYXO5wr78TUw" base_Element="_whdeAF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_wvdrUJUFEeiYXO5wr78TUw" base_Element="_Ng78kGN3Eeio9amveq0yWQ"/>
  <OpenModel_Profile:Experimental xmi:id="_x78skJUFEeiYXO5wr78TUw" base_Element="_lYH-sGN4Eeio9amveq0yWQ"/>
  <OpenModel_Profile:Experimental xmi:id="_zIG9sJUFEeiYXO5wr78TUw" base_Element="_oQAKwGN4Eeio9amveq0yWQ"/>
  <OpenModel_Profile:Experimental xmi:id="_0dCJQJUFEeiYXO5wr78TUw" base_Element="_2Ykn8GN4Eeio9amveq0yWQ"/>
  <OpenModel_Profile:Experimental xmi:id="_1pv0AJUFEeiYXO5wr78TUw" base_Element="_WbPTMGN5Eeio9amveq0yWQ"/>
  <OpenModel_Profile:Experimental xmi:id="_4Z5ncJUFEeiYXO5wr78TUw" base_Element="_B2hDUF-GEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_8B_IcJUFEeiYXO5wr78TUw" base_Element="_kxfYYHPSEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Experimental xmi:id="_9nSSUJUFEeiYXO5wr78TUw" base_Element="_nDl94HPSEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Experimental xmi:id="_-rp5YJUFEeiYXO5wr78TUw" base_Element="_okbegHPSEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_gDtDMJUGEeiYXO5wr78TUw" base_Element="_pRh10DnOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_tzIAkJUGEeiYXO5wr78TUw" base_Element="_zR55wD5cEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_ugpN4JUGEeiYXO5wr78TUw" base_Element="_1euWoD5cEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_25PQgJUGEeiYXO5wr78TUw" base_Element="_c8RX8D3BEeiFiY3bcpqGkg"/>
  <OpenModel_Profile:Preliminary xmi:id="_AP5d4JUHEeiYXO5wr78TUw" base_Element="_nJzw0DnNEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Q-gwQJUHEeiYXO5wr78TUw" base_Element="_HlF2kDmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_RuzkwJUHEeiYXO5wr78TUw" base_Element="_ZccSoDmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_SYVC4JUHEeiYXO5wr78TUw" base_Element="_ZcmqsDmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_TEXpgJUHEeiYXO5wr78TUw" base_Element="_Zcn40DmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_T1j14JUHEeiYXO5wr78TUw" base_Element="_ZcpG8DmxEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_yAT9QJUHEeiYXO5wr78TUw" base_Element="_V9WhUDnMEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_y6SSMJUHEeiYXO5wr78TUw" base_Element="_a2rnwDnMEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_z0URgJUHEeiYXO5wr78TUw" base_Element="_cc-3MDnMEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_2BYmAJUHEeiYXO5wr78TUw" base_Element="_AeSbgD5dEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Experimental xmi:id="_3mrI0JUHEeiYXO5wr78TUw" base_Element="_FCQV8D5dEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Experimental xmi:id="_4YckAJUHEeiYXO5wr78TUw" base_Element="_GY4KoD5dEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Experimental xmi:id="_5oJ4YJUHEeiYXO5wr78TUw" base_Element="_JaCOgD5dEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_Wp030JUIEeiYXO5wr78TUw" base_Element="_EYaAsDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Xb5N8JUIEeiYXO5wr78TUw" base_Element="_KFKIIDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YKO6oJUIEeiYXO5wr78TUw" base_Element="_SHb8gDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_aXMhcJUIEeiYXO5wr78TUw" base_Element="_KD8ncDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_bLRpwJUIEeiYXO5wr78TUw" base_Element="_WF3hMDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_b1JGIJUIEeiYXO5wr78TUw" base_Element="_c2wmMDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_cpGSoJUIEeiYXO5wr78TUw" base_Element="_vD0MgDa4EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_fbVJsJUIEeiYXO5wr78TUw" base_Element="_0RG8kEcmEei7eo5RdnNiBQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_iO6EkJUIEeiYXO5wr78TUw" base_Element="_AJK9MDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_jCVFkJUIEeiYXO5wr78TUw" base_Element="_HJMDUDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_khaSsJUIEeiYXO5wr78TUw" base_Element="_c4PJsDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_mKVYUJUIEeiYXO5wr78TUw" base_Element="_MRthQDmyEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_m7nrUJUIEeiYXO5wr78TUw" base_Element="_awsTUDmyEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_oK_BcJUIEeiYXO5wr78TUw" base_Element="_ZqQQ8DkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_o4XE0JUIEeiYXO5wr78TUw" base_Element="_pslFEDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_pmLNEJUIEeiYXO5wr78TUw" base_Element="_pxVpQDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_qUGDAJUIEeiYXO5wr78TUw" base_Element="_pxdlEDkIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_sGqM0JUIEeiYXO5wr78TUw" base_Element="_iZQzADkJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_wsYawJUIEeiYXO5wr78TUw" base_Element="_vYoMcDkJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_x4oygJUIEeiYXO5wr78TUw" base_Element="_vYsd4DkJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_fZkZsJUJEeiYXO5wr78TUw" base_Element="_1HQGsDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_gKrtkJUJEeiYXO5wr78TUw" base_Element="_9xGRYDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_g32VkJUJEeiYXO5wr78TUw" base_Element="_9xO0QDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_hoM0cJUJEeiYXO5wr78TUw" base_Element="_9xQpcDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_iXjNwJUJEeiYXO5wr78TUw" base_Element="_9xU64DkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_jMJ6gJUJEeiYXO5wr78TUw" base_Element="_9xYlQDkKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_kYGwQJUJEeiYXO5wr78TUw" base_Element="_EUC2YDnOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_lGh8gJUJEeiYXO5wr78TUw" base_Element="_Llhf8DnOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_l-e4MJUJEeiYXO5wr78TUw" base_Element="_PXMawDnOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_mpinYJUJEeiYXO5wr78TUw" base_Element="_RTPQsDnOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_n0ewgJUJEeiYXO5wr78TUw" base_Element="_DaKYIDm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_opcpoJUJEeiYXO5wr78TUw" base_Element="_Nnw0kDm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_pb9EoJUJEeiYXO5wr78TUw" base_Element="_ReVdgDm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_qG7UQJUJEeiYXO5wr78TUw" base_Element="_Vhg_EDm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_qx3usJUJEeiYXO5wr78TUw" base_Element="_XYz34Dm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_rbXXoJUJEeiYXO5wr78TUw" base_Element="_bbN9YDm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_sb5AgJUJEeiYXO5wr78TUw" base_Element="_fCLdADm6EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_9VPjQJUJEeiYXO5wr78TUw" base_Element="_tIZ6oDa2Eei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_psa4QZmYEeibE8EgApNciA" base_StructuralFeature="_psa4QJmYEeibE8EgApNciA"/>
  <OpenModel_Profile:Preliminary xmi:id="_76XPYJmYEeibE8EgApNciA" base_Element="_psa4QJmYEeibE8EgApNciA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_xVayYZs3EeiPBvbfaqSLYg" base_Class="_xVaLUJs3EeiPBvbfaqSLYg"/>
  <OpenModel_Profile:Preliminary xmi:id="_aIbBEJwYEeiPD5fN_oRNAg" base_Element="_zxa4AzQvEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_gJ6pcJwYEeiPD5fN_oRNAg" base_Element="_vRv1QDQPEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_hGY4wJwYEeiPD5fN_oRNAg" base_Element="_u3gwwDOVEeiHat9KcP8uWA"/>
  <OpenModel_Profile:Preliminary xmi:id="_iAtzAJwYEeiPD5fN_oRNAg" base_Element="_nXwUATkOEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_i48bgJwYEeiPD5fN_oRNAg" base_Element="_LORrYDQtEeixv_sLOod4lQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_kLxVUJwYEeiPD5fN_oRNAg" base_Element="_7QOj8DTUEeiwQ6KPLHcy4g"/>
  <OpenModel_Profile:Experimental xmi:id="_Y1EtYJwZEeiPD5fN_oRNAg" base_Element="_tZ9usGmNEeiIM-XECFR2Pw"/>
  <OpenModel_Profile:Experimental xmi:id="_dIiGoJwZEeiPD5fN_oRNAg" base_Element="_OXq2wV-GEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_Cw52IJwaEeiPD5fN_oRNAg" base_Element="_j9-9sDWeEei9Ia34RXjpEg"/>
  <OpenModel_Profile:Preliminary xmi:id="_D6DPgJwaEeiPD5fN_oRNAg" base_Element="_MxzowjagEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_E2paoJwaEeiPD5fN_oRNAg" base_Element="_345dADabEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_Fu54UJwaEeiPD5fN_oRNAg" base_Element="_uwHosDadEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_LHLkkJwaEeiPD5fN_oRNAg" base_Element="_guTdEjm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_RjrG4JwaEeiPD5fN_oRNAg" base_Element="_uohQ8jgTEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_ZIMoQJwaEeiPD5fN_oRNAg" base_Element="_Y7jjYTnCEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_coZ_oJwaEeiPD5fN_oRNAg" base_Element="_OCdvYTnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_evH0gJwaEeiPD5fN_oRNAg" base_Element="_UZQncjnDEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_hGZN4JwaEeiPD5fN_oRNAg" base_Element="_8qGysD5xEeijbdkIlrq2uQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_iBQ6sJwaEeiPD5fN_oRNAg" base_Element="_KN9YcTnAEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_lGtBoJwaEeiPD5fN_oRNAg" base_Element="_uf0ZQDdVEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_mUbZAJwaEeiPD5fN_oRNAg" base_Element="_hzG3ETm7EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_x5OR4JwaEeiPD5fN_oRNAg" base_Element="_HAitoF-FEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_zAqbEJwaEeiPD5fN_oRNAg" base_Element="_PG3MwGkCEeip9umi7zNprw"/>
  <OpenModel_Profile:Experimental xmi:id="_0gpnIJwaEeiPD5fN_oRNAg" base_Element="_inPiUH7eEei4v5WRHqfM1Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_p_Z_8KVwEeikF6xsfT18UA" base_Class="_fMPCUES6EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:Experimental xmi:id="_B0g3AKY5Eeily5uFlujj3Q" base_Element="_xVaLUJs3EeiPBvbfaqSLYg"/>
  <OpenModel_Profile:Experimental xmi:id="_TSB-AL23EeigqpWKF5WysQ" base_Element="_xSnkYF3eEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_aT_k4L23EeigqpWKF5WysQ" base_Element="_HY63sF3gEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_305_gL_wEeisMMIUeH4UGw" base_Element="_D0XjIF3xEeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_7EqgEL_wEeisMMIUeH4UGw" base_Element="_yX0vkF33EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_1Et6YL_xEeisMMIUeH4UGw" base_Element="_Pjwo0F35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_4JmnsL_xEeisMMIUeH4UGw" base_Element="_s23WgF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_6-yFEL_xEeisMMIUeH4UGw" base_Element="_t2N6sF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_9cmyYL_xEeisMMIUeH4UGw" base_Element="_u8wsAF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_AdTjQL_yEeisMMIUeH4UGw" base_Element="_wvGzYF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_DLFYIL_yEeisMMIUeH4UGw" base_Element="_xjSpYF35EeiwL5tPgFMcjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_FoRMQL_yEeisMMIUeH4UGw" base_Element="_4zoYkF37Eei-d9bwZwcVEw"/>
  <OpenModel_Profile:Experimental xmi:id="_RmcOcL_yEeisMMIUeH4UGw" base_Element="_fpzkYF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_FpEoEL_zEeisMMIUeH4UGw" base_Element="_gjdwQF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_J0KvgL_zEeisMMIUeH4UGw" base_Element="_lCv_AF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_MdAaAL_zEeisMMIUeH4UGw" base_Element="_mDlw8F9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_PEVBkL_zEeisMMIUeH4UGw" base_Element="_m9TAIF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_RpyA4L_zEeisMMIUeH4UGw" base_Element="_utZfYF9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_dipFQL_zEeisMMIUeH4UGw" base_Element="_vnd68F9vEeiaLPXj8My4aQ"/>
  <OpenModel_Profile:Experimental xmi:id="_hWbooOzlEei7-e9MrPJW7Q" base_Element="_ZQtesOzlEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0yXWgfuDEeikN6fzJzDfWw" base_StructuralFeature="_0yXWgPuDEeikN6fzJzDfWw" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ilsVQfuEEeikN6fzJzDfWw" base_StructuralFeature="_ilsVQPuEEeikN6fzJzDfWw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PyPn4fuFEeikN6fzJzDfWw" base_StructuralFeature="_PyPn4PuFEeikN6fzJzDfWw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tID8QfuOEeiYVshOvl6_ww" base_StructuralFeature="_tID8QPuOEeiYVshOvl6_ww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QOpoEfwqEeijjKJn7OxwuQ" base_StructuralFeature="_QOpoEPwqEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zm95I_wtEeijjKJn7OxwuQ" base_StructuralFeature="_zm95IvwtEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_u6wxQfxEEeijjKJn7OxwuQ" base_StructuralFeature="_u6wxQPxEEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7qyuMfxEEeijjKJn7OxwuQ" base_StructuralFeature="_7qyuMPxEEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tMfJMfxSEeijjKJn7OxwuQ" base_StructuralFeature="_tMfJMPxSEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tlqeMfxSEeijjKJn7OxwuQ" base_StructuralFeature="_tlqeMPxSEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qvf3cfxUEeijjKJn7OxwuQ" base_StructuralFeature="_qvf3cPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rBniMfxUEeijjKJn7OxwuQ" base_StructuralFeature="_rBniMPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rVW9kfxUEeijjKJn7OxwuQ" base_StructuralFeature="_rVW9kPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4r4bcA5rEemrJqq3q9vf6g" base_StructuralFeature="_4rzi8A5rEemrJqq3q9vf6g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nUxZ8RDBEemFz_A_9-IJMQ" base_StructuralFeature="_nUxZ8BDBEemFz_A_9-IJMQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_43vsARDCEemFz_A_9-IJMQ" base_StructuralFeature="_43vsABDCEemFz_A_9-IJMQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_me91ERidEemVYPRf16WzdQ" base_StructuralFeature="_me91EBidEemVYPRf16WzdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZhRloRlYEem_VM0Ij2_uSw" base_StructuralFeature="_ZhRloBlYEem_VM0Ij2_uSw"/>
  <OpenModel_Profile:Experimental xmi:id="_lQTh4Bx0Eemit6R65X1VNQ" base_Element="_me91EBidEemVYPRf16WzdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5LXI0Bx5Eemit6R65X1VNQ" base_StructuralFeature="_5LWhwBx5Eemit6R65X1VNQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gKzRkRx9Eemit6R65X1VNQ" base_StructuralFeature="_gKzRkBx9Eemit6R65X1VNQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_geJEURx9Eemit6R65X1VNQ" base_StructuralFeature="_geJEUBx9Eemit6R65X1VNQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gy064Rx9Eemit6R65X1VNQ" base_StructuralFeature="_gy064Bx9Eemit6R65X1VNQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kFvsADzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZoVDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kFxhMDzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZoVjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGTFojzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_kEZowzzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGTssDzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_kEZoxTzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45Xr8TzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE4zzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45YTADzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE6zzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45YTATzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE7zzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45YTAjzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE8TzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45YTAzzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE8zzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45YTBDzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE9zzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45YTBTzEEeiWMf5FLWfdLA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_45XE-zzEEeiWMf5FLWfdLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_1WeXiTzFEeiWMf5FLWfdLA" base_Class="_1WdwcDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1WeXijzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WdwcjzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1We-kDzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WdwdDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1We-kTzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WdweDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1We-kjzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WeXgTzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1We-kzzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WeXhTzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DquKQT24Eeiu6I5JfRTxxQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_DquKQD24Eeiu6I5JfRTxxQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Dqv_cj24Eeiu6I5JfRTxxQ" base_StructuralFeature="_Dqv_cT24Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zlIC4z27Eeiu6I5JfRTxxQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ns.uml#_zlIC4j27Eeiu6I5JfRTxxQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zlJ4Ej27Eeiu6I5JfRTxxQ" base_StructuralFeature="_zlJ4ET27Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Future xmi:id="_caI6YKewEeixw5Ke5QD1pQ" base_Element="_1WdwcDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_X0ARgCotEemZ-7haRVvogQ" base_Element="_aaEZADOREeiHat9KcP8uWA" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-KSlACovEemZ-7haRVvogQ" base_StructuralFeature="_-KR98CovEemZ-7haRVvogQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-KZSsCovEemZ-7haRVvogQ" base_StructuralFeature="_-KYroCovEemZ-7haRVvogQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_pc1pECowEemZ-7haRVvogQ" base_Element="_-KR98CovEemZ-7haRVvogQ"/>
  <OpenModel_Profile:Reference xmi:id="_RkW-wCo1EemZ-7haRVvogQ" base_Element="_e5WnwDOREeiHat9KcP8uWA" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:PassedByReference xmi:id="_O33G0Co2EemZ-7haRVvogQ" base_Property="_345dADabEei23_xWdimG9w"/>
  <OpenModel_Profile:PassedByReference xmi:id="_SESmkCo2EemZ-7haRVvogQ" base_Property="_uwHosDadEei23_xWdimG9w"/>
  <OpenModel_Profile:PassedByReference xmi:id="_hPlFACo2EemZ-7haRVvogQ" base_Property="_MxzowjagEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NQ4FcCo3EemZ-7haRVvogQ" base_StructuralFeature="_NQ3eYCo3EemZ-7haRVvogQ"/>
  <OpenModel_Profile:Experimental xmi:id="_QfLYACo4EemZ-7haRVvogQ" base_Element="_NQ3eYCo3EemZ-7haRVvogQ"/>
  <OpenModel_Profile:Reference xmi:id="_8uslMCo5EemS0_wZSU3sbA" base_Element="_J0Zx0DOSEeiHat9KcP8uWA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_u4E-MCo6EemS0_wZSU3sbA" base_Class="_u4EXICo6EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_6WjzsCo6EemS0_wZSU3sbA" base_Element="_u4EXICo6EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_iGr54Co7EemS0_wZSU3sbA" base_StructuralFeature="_iGrS0Co7EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_iGwyYCo7EemS0_wZSU3sbA" base_StructuralFeature="_iGwLUCo7EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_2flFoCo7EemS0_wZSU3sbA" base_Element="_iGrS0Co7EemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_2gbaMCo7EemS0_wZSU3sbA" base_Property="_iGrS0Co7EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_S1lR4Co8EemS0_wZSU3sbA" base_Element="_-gDvwDOREeiHat9KcP8uWA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Lpvg0Co9EemS0_wZSU3sbA" base_Class="_Lpu5wCo9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_XAFG8Co9EemS0_wZSU3sbA" base_Element="_Lpu5wCo9EemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qPKyACo9EemS0_wZSU3sbA" base_StructuralFeature="_qPKK8Co9EemS0_wZSU3sbA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7P6WMCo9EemS0_wZSU3sbA" base_StructuralFeature="_7P3S4Co9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gmS90Co-EemS0_wZSU3sbA" base_StructuralFeature="_gmSWwCo-EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gmWBICo-EemS0_wZSU3sbA" base_StructuralFeature="_gmVaESo-EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_IiUK8Co_EemS0_wZSU3sbA" base_Element="_gmSWwCo-EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4oVvoSpAEemS0_wZSU3sbA" base_StructuralFeature="_4oVvoCpAEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FFksYSpBEemS0_wZSU3sbA" base_StructuralFeature="_FFksYCpBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aQl4oSpBEemS0_wZSU3sbA" base_StructuralFeature="_aQl4oCpBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_p2pAcSpBEemS0_wZSU3sbA" base_StructuralFeature="_p2pAcCpBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BecYMSpCEemS0_wZSU3sbA" base_StructuralFeature="_BecYMCpCEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_QP1I4CpCEemS0_wZSU3sbA" base_Element="_BecYMCpCEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_CfmdwCpDEemS0_wZSU3sbA" base_Element="_K_9mADOSEeiHat9KcP8uWA" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nb_4ESpDEemS0_wZSU3sbA" base_StructuralFeature="_nb_4ECpDEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WPIuACpEEemS0_wZSU3sbA" base_StructuralFeature="_WPIG8CpEEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_orwaUCpEEemS0_wZSU3sbA" base_StructuralFeature="_orvzQCpEEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DVD0MSpFEemS0_wZSU3sbA" base_StructuralFeature="_DVD0MCpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Xbog4SpFEemS0_wZSU3sbA" base_StructuralFeature="_Xbog4CpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fcJasSpFEemS0_wZSU3sbA" base_StructuralFeature="_fcJasCpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pEfN8CpFEemS0_wZSU3sbA" base_StructuralFeature="_pEem4CpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_2kTpECpFEemS0_wZSU3sbA" base_Property="_pEem4CpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_-5__ECr9EemS0_wZSU3sbA" base_Class="_-5-w8Cr9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_GsfD8Cr-EemS0_wZSU3sbA" base_Element="_-5-w8Cr9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZuR54Sr-EemS0_wZSU3sbA" base_StructuralFeature="_ZuR54Cr-EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_a8hZMCr_EemS0_wZSU3sbA" base_Element="_ZuR54Cr-EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_248n0Sr_EemS0_wZSU3sbA" base_StructuralFeature="_248n0Cr_EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_24_EECr_EemS0_wZSU3sbA" base_StructuralFeature="_24-dASr_EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_gagPYCsAEemS0_wZSU3sbA" base_Element="_248n0Cr_EemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GWfecCsBEemS0_wZSU3sbA" base_StructuralFeature="_GWe3YSsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GWh6sSsBEemS0_wZSU3sbA" base_StructuralFeature="_GWh6sCsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_jjlqwCsBEemS0_wZSU3sbA" base_Element="_GWe3YSsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_nVYhYCsBEemS0_wZSU3sbA" base_Property="_GWe3YSsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6rv5ICsBEemS0_wZSU3sbA" base_StructuralFeature="_6rvSESsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6rxuUSsBEemS0_wZSU3sbA" base_StructuralFeature="_6rxuUCsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_SjqwgCsCEemS0_wZSU3sbA" base_Element="_6rvSESsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_ajNZ8CsCEemS0_wZSU3sbA" base_Property="_6rvSESsBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qCsxUCsDEemS0_wZSU3sbA" base_StructuralFeature="_qCsKQisDEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qCumgisDEemS0_wZSU3sbA" base_StructuralFeature="_qCumgSsDEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Jk5z0CsEEemS0_wZSU3sbA" base_Element="_qCsKQisDEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_OOhqUCsEEemS0_wZSU3sbA" base_Element="_-5-w8Cr9EemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_XxQk0CsEEemS0_wZSU3sbA" base_Element="_zOfv8DQVEeixv_sLOod4lQ" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_0uXNUCsEEemS0_wZSU3sbA" base_Element="_AmzWYDQtEeixv_sLOod4lQ" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:PassedByReference xmi:id="_UGGsQCsFEemS0_wZSU3sbA" base_Property="_uf0ZQDdVEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lZbOMSsFEemS0_wZSU3sbA" base_StructuralFeature="_lZbOMCsFEemS0_wZSU3sbA" support="CONDITIONAL_MANDATORY" condition="Either intVirtualLinkDesc or intCpd shall be present."/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lZ69cSsFEemS0_wZSU3sbA" base_StructuralFeature="_lZ69cCsFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_gX9C8CsGEemS0_wZSU3sbA" base_Element="_lZbOMCsFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_km5voCsGEemS0_wZSU3sbA" base_Property="_lZbOMCsFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6rucQSsHEemS0_wZSU3sbA" base_StructuralFeature="_6rucQCsHEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6rw4gSsHEemS0_wZSU3sbA" base_StructuralFeature="_6rw4gCsHEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_m7XasCsIEemS0_wZSU3sbA" base_Element="_ISONYDOSEeiHat9KcP8uWA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Preliminary xmi:id="_88WloCsIEemS0_wZSU3sbA" base_Element="_6rucQCsHEemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_89X5UCsIEemS0_wZSU3sbA" base_Property="_6rucQCsHEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_5JnB4CsKEemS0_wZSU3sbA" base_Element="_0lvvQDgREeiOYfGHew0BGg" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_RWmKUCsLEemS0_wZSU3sbA" base_Element="_p0UVsDQvEeixv_sLOod4lQ" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oGtFESsLEemS0_wZSU3sbA" base_StructuralFeature="_oGtFECsLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_2DESQCsLEemS0_wZSU3sbA" base_Element="_oGtFECsLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J483kCsMEemS0_wZSU3sbA" base_StructuralFeature="_J48QgCsMEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_UM5zoCsMEemS0_wZSU3sbA" base_Element="_J48QgCsMEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_I2AXYCsNEemS0_wZSU3sbA" base_Element="_tEnEsDTSEeiwQ6KPLHcy4g" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZqSM4CsNEemS0_wZSU3sbA" base_StructuralFeature="_ZqRl0isNEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZqUCEisNEemS0_wZSU3sbA" base_StructuralFeature="_ZqUCESsNEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_qqY34CsNEemS0_wZSU3sbA" base_Element="_ZqRl0isNEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PYklICsQEemS0_wZSU3sbA" base_StructuralFeature="_PYj-ECsQEemS0_wZSU3sbA" isInvariant="true"/>
  <OpenModel_Profile:Experimental xmi:id="_Yq328CsQEemS0_wZSU3sbA" base_Element="_PYj-ECsQEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ix8_MCsREemS0_wZSU3sbA" base_StructuralFeature="_ix8YIisREemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ix-0YSsREemS0_wZSU3sbA" base_StructuralFeature="_ix-0YCsREemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_Y1jLACsSEemS0_wZSU3sbA" base_Element="_ix8YIisREemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_Y29gQCsSEemS0_wZSU3sbA" base_Property="_ix8YIisREemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_BP2F8CvLEemS0_wZSU3sbA" base_Element="_6C8F4DnAEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_O353ECvLEemS0_wZSU3sbA" base_StructuralFeature="_O35QACvLEemS0_wZSU3sbA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZpVZUSvLEemS0_wZSU3sbA" base_StructuralFeature="_ZpVZUCvLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hiiKMCvLEemS0_wZSU3sbA" base_StructuralFeature="_hig8ECvLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_rkuA0CvLEemS0_wZSU3sbA" base_Element="_O35QACvLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_tJg0YCvLEemS0_wZSU3sbA" base_Element="_ZpVZUCvLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_u0qHkCvLEemS0_wZSU3sbA" base_Element="_hig8ECvLEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Reference xmi:id="_yVHWkCvLEemS0_wZSU3sbA" base_Element="_DlOpkDnDEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:PassedByReference xmi:id="_DdW0cCvNEemS0_wZSU3sbA" base_Property="_KFKIIDnIEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Reference xmi:id="_P06nACvNEemS0_wZSU3sbA" base_Element="_u4EXICo6EemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_dqLtsCvNEemS0_wZSU3sbA" base_Element="_8BUXwDm4EeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_hK4NQCvNEemS0_wZSU3sbA" base_Element="_oFQM8Dd-EeiIfPeSAqyGdQ" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_srGIICvNEemS0_wZSU3sbA" base_Element="_AJK9MDa0Eei23_xWdimG9w" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_xq1YkCvNEemS0_wZSU3sbA" base_Element="_tIZ6oDa2Eei23_xWdimG9w" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_5dZV8CvNEemS0_wZSU3sbA" base_Element="_ZqQQ8DkIEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_8Si-ICvNEemS0_wZSU3sbA" base_Element="_iZQzADkJEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_AI0FECvOEemS0_wZSU3sbA" base_Element="_1HQGsDkKEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_DALTwCvOEemS0_wZSU3sbA" base_Element="_HlF2kDmxEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_H4JIQCvOEemS0_wZSU3sbA" base_Element="_MRthQDmyEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_L05RsCvOEemS0_wZSU3sbA" base_Element="_EYaAsDnIEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_cLtvICvOEemS0_wZSU3sbA" base_Element="_0RG8kEcmEei7eo5RdnNiBQ" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_hAvkYCvOEemS0_wZSU3sbA" base_Element="_ZQtesOzlEei7-e9MrPJW7Q" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_r2aGYCvOEemS0_wZSU3sbA" base_Element="_kEZoUjzEEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_vPvZsCvOEemS0_wZSU3sbA" base_Element="_iunqUCpAEemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_yURhsCvOEemS0_wZSU3sbA" base_Element="_5p1FACpEEemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_2DdwQCvOEemS0_wZSU3sbA" base_Element="_OCLeMCpFEemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_ZRmR8CvPEemS0_wZSU3sbA" base_Element="_DZsyMDnHEeiWMf5FLWfdLA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lIdyQCvPEemS0_wZSU3sbA" base_StructuralFeature="_lIdLMivPEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lIfncSvPEemS0_wZSU3sbA" base_StructuralFeature="_lIfncCvPEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_AsiyUCvQEemS0_wZSU3sbA" base_Element="_lIdLMivPEemS0_wZSU3sbA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_DCFGUCvQEemS0_wZSU3sbA" base_Property="_lIdLMivPEemS0_wZSU3sbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_p8meQTa8EeivvI-m1BaAbA" base_StructuralFeature="_p8meQDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_mm4FAJT1EeiYXO5wr78TUw" base_Element="_p8meQDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Future xmi:id="_CA6ccDOgEemzC6274d_Yog" base_Element="_tID8QPuOEeiYVshOvl6_ww"/>
  <OpenModel_Profile:Future xmi:id="_D0G4YDOgEemzC6274d_Yog" base_Element="_4rzi8A5rEemrJqq3q9vf6g"/>
  <OpenModel_Profile:Future xmi:id="_M5nEUDOgEemzC6274d_Yog" base_Element="_QOpoEPwqEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_Ox3mcDOgEemzC6274d_Yog" base_Element="_u6wxQPxEEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_QlaAoDOgEemzC6274d_Yog" base_Element="_7qyuMPxEEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_TekmIDOgEemzC6274d_Yog" base_Element="_0yXWgPuDEeikN6fzJzDfWw"/>
  <OpenModel_Profile:Future xmi:id="_VJR0cDOgEemzC6274d_Yog" base_Element="_ilsVQPuEEeikN6fzJzDfWw"/>
  <OpenModel_Profile:Future xmi:id="_Ww7HsDOgEemzC6274d_Yog" base_Element="_PyPn4PuFEeikN6fzJzDfWw"/>
  <OpenModel_Profile:Future xmi:id="_YUTmADOgEemzC6274d_Yog" base_Element="_ZhRloBlYEem_VM0Ij2_uSw"/>
  <OpenModel_Profile:Future xmi:id="_OOwc4DOhEemzC6274d_Yog" base_Element="_zm95IvwtEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_ajZeUDOhEemzC6274d_Yog" base_Element="_QPdCQHPTEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Future xmi:id="_gDozwDOhEemzC6274d_Yog" base_Element="_TkXIkHPTEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Future xmi:id="_2hLiYDOiEemzC6274d_Yog" base_Element="_yPciURDCEemFz_A_9-IJMQ"/>
  <OpenModel_Profile:Future xmi:id="_K4zi0DOjEemzC6274d_Yog" base_Element="_hzvvUPxSEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_OPVZwDOjEemzC6274d_Yog" base_Element="_tMfJMPxSEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_PsEdgDOjEemzC6274d_Yog" base_Element="_tlqeMPxSEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_RG1yYDOjEemzC6274d_Yog" base_Element="_nUxZ8BDBEemFz_A_9-IJMQ"/>
  <OpenModel_Profile:Future xmi:id="_UQZkUDOjEemzC6274d_Yog" base_Element="_43vsABDCEemFz_A_9-IJMQ"/>
  <OpenModel_Profile:Future xmi:id="_WZ1WADOjEemzC6274d_Yog" base_Element="_cyGIcPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_ZS504DOjEemzC6274d_Yog" base_Element="_qvf3cPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_bF4OYDOjEemzC6274d_Yog" base_Element="_rBniMPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:Future xmi:id="_cqe0sDOjEemzC6274d_Yog" base_Element="_rVW9kPxUEeijjKJn7OxwuQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Gt5rsDUvEem2n8bBHelJyw" base_StructuralFeature="_Gn4jQDUvEem2n8bBHelJyw"/>
  <OpenModel_Profile:PassedByReference xmi:id="_X250ADUvEem2n8bBHelJyw" base_Property="_Gn4jQDUvEem2n8bBHelJyw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_auYXcDUvEem2n8bBHelJyw" base_StructuralFeature="_auXwYDUvEem2n8bBHelJyw"/>
  <OpenModel_Profile:Reference xmi:id="_7gdtcDUvEem2n8bBHelJyw" base_Element="_BAt7gBx6Eemit6R65X1VNQ" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_EYSCsDUwEem2n8bBHelJyw" base_Element="_m4u3AC41EemS0_wZSU3sbA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Future xmi:id="_uzbV8DU2Eem2n8bBHelJyw" base_Element="_aYK0IHPSEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Future xmi:id="_w9fZwDU2Eem2n8bBHelJyw" base_Element="_JqA_UHPTEeiuFfjlON-CuQ"/>
  <OpenModel_Profile:Future xmi:id="_zOyuADU2Eem2n8bBHelJyw" base_Element="_5--AQJdUEei-sOl6ywWHlg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4VCl0TwrEemSHu2qGsweWg" base_StructuralFeature="_4VCl0DwrEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L7b9oTwsEemSHu2qGsweWg" base_StructuralFeature="_L7b9oDwsEemSHu2qGsweWg"/>
  <OpenModel_Profile:Deprecated xmi:id="_Lh9ZcET6EemWRYeHGX88Yw" base_Element="_S4W1oDazEei23_xWdimG9w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_pQg3kUT7EemWRYeHGX88Yw" base_Class="_pQg3kET7EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2tG_kET7EemWRYeHGX88Yw" base_StructuralFeature="_2tGYgET7EemWRYeHGX88Yw" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GBWlsET8EemWRYeHGX88Yw" base_StructuralFeature="_GBV-oET8EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nFmCsET8EemWRYeHGX88Yw" base_StructuralFeature="_nFlboET8EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Experimental xmi:id="_76fN8ET8EemWRYeHGX88Yw" base_Element="_T3At8ET8EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Reference xmi:id="_9w8ZQET8EemWRYeHGX88Yw" base_Element="_T3At8ET8EemWRYeHGX88Yw" reference="IFA011 V3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_FAOqcET9EemWRYeHGX88Yw" base_Element="_pQg3kET7EemWRYeHGX88Yw" reference="IFA011 V3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZFa3EET9EemWRYeHGX88Yw" base_StructuralFeature="_ZFaQAET9EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vyMxAUT9EemWRYeHGX88Yw" base_StructuralFeature="_vyMxAET9EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SagBwUT-EemWRYeHGX88Yw" base_StructuralFeature="_SagBwET-EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qbXZwET-EemWRYeHGX88Yw" base_StructuralFeature="_qbWLoET-EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wHuqMUT_EemWRYeHGX88Yw" base_StructuralFeature="_wHuqMET_EemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wHxGcUT_EemWRYeHGX88Yw" base_StructuralFeature="_wHxGcET_EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Experimental xmi:id="_IA5ewEUAEemWRYeHGX88Yw" base_Element="_wHuqMET_EemWRYeHGX88Yw"/>
  <OpenModel_Profile:PassedByReference xmi:id="_kux4IEUDEemWRYeHGX88Yw" base_Property="_PG3MwGkCEeip9umi7zNprw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5zquYEdMEemb9YiEz89e4g" base_StructuralFeature="_5zqHUEdMEemb9YiEz89e4g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5zwN8EdMEemb9YiEz89e4g" base_StructuralFeature="_5zvm4EdMEemb9YiEz89e4g"/>
  <OpenModel_Profile:PassedByReference xmi:id="_R8H8IEdNEemb9YiEz89e4g" base_Property="_5zqHUEdMEemb9YiEz89e4g"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_jCjpYU_kEemeaek-m0jmOA" base_Class="_jCjpYE_kEemeaek-m0jmOA"/>
  <OpenModel_Profile:Preliminary xmi:id="_KaNdEHZkEemQatxXK-x5hg" base_Element="_iunqUCpAEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_TfaHAHZkEemQatxXK-x5hg" base_Element="_4oVvoCpAEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_UqhPQHZkEemQatxXK-x5hg" base_Element="_FFksYCpBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_WiqcoHZkEemQatxXK-x5hg" base_Element="_p2pAcCpBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Obsolete xmi:id="_1Of6AHZzEemQatxXK-x5hg" base_Element="_aQl4oCpBEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_3VVOMHZ0EemQatxXK-x5hg" base_Element="_OCLeMCpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_6-BzMHZ0EemQatxXK-x5hg" base_Element="_Xbog4CpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_79EOUHZ0EemQatxXK-x5hg" base_Element="_fcJasCpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_9QflEHZ0EemQatxXK-x5hg" base_Element="_pEem4CpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_wUORAHZ2EemQatxXK-x5hg" base_Element="_DVD0MCpFEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_xqNzkHZ2EemQatxXK-x5hg" base_Element="_5p1FACpEEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Obsolete xmi:id="_qb0y4HZ5EemQatxXK-x5hg" base_Element="_DpVfADa5EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Y6TK8HZ7EemQatxXK-x5hg" base_Element="_auXwYDUvEem2n8bBHelJyw"/>
  <OpenModel_Profile:Preliminary xmi:id="_aO_F8HZ7EemQatxXK-x5hg" base_Element="_Gn4jQDUvEem2n8bBHelJyw"/>
  <OpenModel_Profile:Preliminary xmi:id="_g3Y9UHZ7EemQatxXK-x5hg" base_Element="_BAt7gBx6Eemit6R65X1VNQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_i4tU0HZ7EemQatxXK-x5hg" base_Element="_gKzRkBx9Eemit6R65X1VNQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_kG174HZ7EemQatxXK-x5hg" base_Element="_geJEUBx9Eemit6R65X1VNQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_lLa-UHZ7EemQatxXK-x5hg" base_Element="_gy064Bx9Eemit6R65X1VNQ"/>
  <OpenModel_Profile:Obsolete xmi:id="_tNjowHZ7EemQatxXK-x5hg" base_Element="_TXQisDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:Obsolete xmi:id="_1hrbEHZ7EemQatxXK-x5hg" base_Element="_mxsiIDa0Eei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_GXru4HZ8EemQatxXK-x5hg" base_Element="_kEZoUjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_HyijUHZ8EemQatxXK-x5hg" base_Element="_kEZoVDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_JPXGoHZ8EemQatxXK-x5hg" base_Element="_kEZoVjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YIYpAHZ_EemQatxXK-x5hg" base_Element="_m4u3AC41EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_bJhT8HcdEemNMq0I6vgjDA" base_Element="_qPKK8Co9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_ciAJ0HcdEemNMq0I6vgjDA" base_Element="_7P3S4Co9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_iEErQHcdEemNMq0I6vgjDA" base_Element="_Lpu5wCo9EemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_guPrUHceEemNMq0I6vgjDA" base_Element="_pQg3kET7EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_kLiRkHceEemNMq0I6vgjDA" base_Element="_2tGYgET7EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_lWjTMHceEemNMq0I6vgjDA" base_Element="_GBV-oET8EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_m_V18HceEemNMq0I6vgjDA" base_Element="_nFlboET8EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_oIlV8HceEemNMq0I6vgjDA" base_Element="_ZFaQAET9EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_pOMTIHceEemNMq0I6vgjDA" base_Element="_vyMxAET9EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_qcFpoHceEemNMq0I6vgjDA" base_Element="_SagBwET-EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_rrWSEHceEemNMq0I6vgjDA" base_Element="_qbWLoET-EemWRYeHGX88Yw"/>
  <OpenModel_Profile:Preliminary xmi:id="_RcGTsHzAEemb-p7Qie3MHg" base_Element="_5LWhwBx5Eemit6R65X1VNQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_XGJFYHzAEemb-p7Qie3MHg" base_Element="_nb_4ECpDEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_aZcpMHzAEemb-p7Qie3MHg" base_Element="_WPIG8CpEEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_cXJE8HzAEemb-p7Qie3MHg" base_Element="_orvzQCpEEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_di5tcHzAEemb-p7Qie3MHg" base_Element="_6sJ0QDdKEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_42aM8L-SEemqDYUsJ60dmQ" base_StructuralFeature="_42Zl4L-SEemqDYUsJ60dmQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nWnN4r-VEemqDYUsJ60dmQ" base_StructuralFeature="_nWnN4b-VEemqDYUsJ60dmQ"/>
  <OpenModel_Profile:Experimental xmi:id="_kxGx8L-aEemJFvT2tWslMQ" base_Element="_jCjpYE_kEemeaek-m0jmOA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5s5a0MOJEem4c4ITFWIsLQ" base_StructuralFeature="_3CZ5QDwrEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5s9sQMOJEem4c4ITFWIsLQ" base_StructuralFeature="_L7aIcTwsEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pP0cocqVEemxyP_sJGfnPA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_pP0coMqVEemxyP_sJGfnPA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_65bUoAe_EeqgQMsQBX3k5g" base_StructuralFeature="_65atkAe_EeqgQMsQBX3k5g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IKVfIAfCEeqAlrMuwBoC7Q" base_StructuralFeature="_IKU4EAfCEeqAlrMuwBoC7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jl2pcD1NEeqiP64oaDnqZQ" base_StructuralFeature="_Jl2CYD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PKJ_gD1NEeqiP64oaDnqZQ" base_StructuralFeature="_PKJYcD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PzepUT1NEeqiP64oaDnqZQ" base_StructuralFeature="_PzepUD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QcWnMD1NEeqiP64oaDnqZQ" base_StructuralFeature="_QcWAID1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_naRUcT1NEeqiP64oaDnqZQ" base_StructuralFeature="_naRUcD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_urrskD1NEeqiP64oaDnqZQ" base_StructuralFeature="_urrFgD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wBaJYT1NEeqiP64oaDnqZQ" base_StructuralFeature="_wBaJYD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yZXfQT1NEeqiP64oaDnqZQ" base_StructuralFeature="_yZXfQD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_B1pAAD1OEeqiP64oaDnqZQ" base_StructuralFeature="_B1oY8D1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EZy-0T1OEeqiP64oaDnqZQ" base_StructuralFeature="_EZy-0D1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GkWK0D1OEeqiP64oaDnqZQ" base_StructuralFeature="_GkVjwD1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ItmWUT1OEeqiP64oaDnqZQ" base_StructuralFeature="_ItmWUD1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J8jcwD1OEeqiP64oaDnqZQ" base_StructuralFeature="_J8i1sD1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_FE1mQD1WEeqiP64oaDnqZQ" base_Element="_PKJYcD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_G2fxID1WEeqiP64oaDnqZQ" base_Element="_PzepUD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_IRvnID1WEeqiP64oaDnqZQ" base_Element="_Jl2CYD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_JupqAD1WEeqiP64oaDnqZQ" base_Element="_QcWAID1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_LZDWUD1WEeqiP64oaDnqZQ" base_Element="_naRUcD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_OEdzsD1WEeqiP64oaDnqZQ" base_Element="_urrFgD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_PloEcD1WEeqiP64oaDnqZQ" base_Element="_wBaJYD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_Q210sD1WEeqiP64oaDnqZQ" base_Element="_yZXfQD1NEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_SL0qoD1WEeqiP64oaDnqZQ" base_Element="_B1oY8D1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_TfbnkD1WEeqiP64oaDnqZQ" base_Element="_EZy-0D1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_U0xp4D1WEeqiP64oaDnqZQ" base_Element="_GkVjwD1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_WN3jwD1WEeqiP64oaDnqZQ" base_Element="_ItmWUD1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:Experimental xmi:id="_XoXy4D1WEeqiP64oaDnqZQ" base_Element="_J8i1sD1OEeqiP64oaDnqZQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_0YWmYMYDEeqGwZoAtvAq1A" base_Class="_0YVYQMYDEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_o_lFYcYFEeqGwZoAtvAq1A" base_StructuralFeature="_o_lFYMYFEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-kf_YcYFEeqGwZoAtvAq1A" base_StructuralFeature="_-kf_YMYFEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:PassedByReference xmi:id="_xEQ4EMYGEeqGwZoAtvAq1A" base_Property="_o_lFYMYFEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:PassedByReference xmi:id="_6Q94MMYGEeqGwZoAtvAq1A" base_Property="_-kf_YMYFEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RzM-AcYIEeqGwZoAtvAq1A" base_StructuralFeature="_RzM-AMYIEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:PassedByReference xmi:id="_XFbFkMYIEeqGwZoAtvAq1A" base_Property="_RzM-AMYIEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U-xUUcbHEeqGwZoAtvAq1A" base_StructuralFeature="_U-xUUMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_yyh4AcbHEeqGwZoAtvAq1A" base_Class="_yyh4AMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2zDHIcbHEeqGwZoAtvAq1A" base_StructuralFeature="_2zDHIMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6WnUgMbHEeqGwZoAtvAq1A" base_StructuralFeature="_6WmtcMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_vfWakcbIEeqGwZoAtvAq1A" base_Class="_vfWakMbIEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E_DdYcbJEeqGwZoAtvAq1A" base_StructuralFeature="_E_DdYMbJEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aVt48cbJEeqGwZoAtvAq1A" base_StructuralFeature="_aVt48MbJEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6X4YccbKEeqGwZoAtvAq1A" base_StructuralFeature="_6X4YcMbKEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_98hj4cbKEeqGwZoAtvAq1A" base_StructuralFeature="_98hj4MbKEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BTijAcbLEeqGwZoAtvAq1A" base_StructuralFeature="_BTijAMbLEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hubV0NDjEeqta_vMxqAxxw" base_StructuralFeature="_huauwNDjEeqta_vMxqAxxw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_huhcc9DjEeqta_vMxqAxxw" base_StructuralFeature="_huhcctDjEeqta_vMxqAxxw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OycdsdgaEeq7hYQNMy9zpg" base_StructuralFeature="_OycdsNgaEeq7hYQNMy9zpg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OylnoNgaEeq7hYQNMy9zpg" base_StructuralFeature="_OylAkNgaEeq7hYQNMy9zpg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sz8G4dtFEeqc48iFXy8U7A" base_StructuralFeature="_sz8G4NtFEeqc48iFXy8U7A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sz_xQ9tFEeqc48iFXy8U7A" base_StructuralFeature="_sz_xQttFEeqc48iFXy8U7A"/>
  <OpenModel_Profile:Experimental xmi:id="_bwSdYOCPEeq4TaxvD15GLA" base_Element="_yyh4AMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_e9_IcOCPEeq4TaxvD15GLA" base_Element="_2zDHIMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_hBFBkOCPEeq4TaxvD15GLA" base_Element="_6WmtcMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_j_bCAOCPEeq4TaxvD15GLA" base_Element="_vfWakMbIEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_l6zJkOCPEeq4TaxvD15GLA" base_Element="_E_DdYMbJEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_ofALsOCPEeq4TaxvD15GLA" base_Element="_aVt48MbJEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_qxsAAOCPEeq4TaxvD15GLA" base_Element="_0YVYQMYDEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_tNbpsOCPEeq4TaxvD15GLA" base_Element="_o_lFYMYFEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_BtAFMOCQEeq4TaxvD15GLA" base_Element="_1UpocOCPEeq4TaxvD15GLA"/>
  <OpenModel_Profile:Experimental xmi:id="_7-X5AOCQEeq4TaxvD15GLA" base_Element="_Pq_FoNtDEeqc48iFXy8U7A"/>
  <OpenModel_Profile:Experimental xmi:id="_B5cwUOCREeq4TaxvD15GLA" base_Element="__Zo-8MbGEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_SmqUgOCREeq4TaxvD15GLA" base_Element="_huauwNDjEeqta_vMxqAxxw"/>
  <OpenModel_Profile:Experimental xmi:id="_n7T94OCREeq4TaxvD15GLA" base_Element="_U-xUUMbHEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_seFlgOCREeq4TaxvD15GLA" base_Element="_sz8G4NtFEeqc48iFXy8U7A"/>
  <OpenModel_Profile:Experimental xmi:id="_kwk4gOCXEeq4TaxvD15GLA" base_Element="_RzM-AMYIEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_9fQYwOCXEeq4TaxvD15GLA" base_Element="_6X4YcMbKEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="__t2-UOCXEeq4TaxvD15GLA" base_Element="_98hj4MbKEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_BnSlIOCYEeq4TaxvD15GLA" base_Element="_BTijAMbLEeqGwZoAtvAq1A"/>
  <OpenModel_Profile:Experimental xmi:id="_Nyn-8OCrEeq4TaxvD15GLA" base_Element="_mC-f4DmyEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_pLM5oOCrEeq4TaxvD15GLA" base_Element="_OylAkNgaEeq7hYQNMy9zpg"/>
  <OpenModel_Profile:Reference xmi:id="_d3h3oOibEeqBDMHZYEWtvQ" base_Element="_0YVYQMYDEeqGwZoAtvAq1A" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_kHWP4OibEeqBDMHZYEWtvQ" base_Element="_yyh4AMbHEeqGwZoAtvAq1A" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Reference xmi:id="_nBiJEOibEeqBDMHZYEWtvQ" base_Element="_vfWakMbIEeqGwZoAtvAq1A" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Deprecated xmi:id="_qDqOkOihEeqBDMHZYEWtvQ" base_Element="_H9SagDm5EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4WUVsfdkEeq0Kr0QR-lqNw" base_StructuralFeature="_4WUVsPdkEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:Experimental xmi:id="_8tCeUPdkEeq0Kr0QR-lqNw" base_Element="_4WUVsPdkEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:Reference xmi:id="_8tWnYPdkEeq0Kr0QR-lqNw" base_Element="_4WUVsPdkEeq0Kr0QR-lqNw" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ownWsfdlEeq0Kr0QR-lqNw" base_Class="_ownWsPdlEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:Reference xmi:id="_BooZIPdmEeq0Kr0QR-lqNw" base_Element="_5MWJUPdlEeq0Kr0QR-lqNw" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Experimental xmi:id="_Bo77IPdmEeq0Kr0QR-lqNw" base_Element="_5MWJUPdlEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_f2Mj8fdmEeq0Kr0QR-lqNw" base_Class="_f2Mj8PdmEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:Experimental xmi:id="_GBy8UPdnEeq0Kr0QR-lqNw" base_Element="_ownWsPdlEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:Reference xmi:id="_GCGeUPdnEeq0Kr0QR-lqNw" base_Element="_ownWsPdlEeq0Kr0QR-lqNw" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:Experimental xmi:id="_NCfo0PdwEeq0Kr0QR-lqNw" base_Element="_f2Mj8PdmEeq0Kr0QR-lqNw"/>
  <OpenModel_Profile:Reference xmi:id="_NC1AAPdwEeq0Kr0QR-lqNw" base_Element="_f2Mj8PdmEeq0Kr0QR-lqNw" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_e-_J4fg8EeqczaleenSRZA" base_StructuralFeature="_e-_J4Pg8EeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MMeQoPg9EeqczaleenSRZA" base_StructuralFeature="_MMdpkfg9EeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MMh7APg9EeqczaleenSRZA" base_StructuralFeature="_MMdpkvg9EeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MMiiEPg9EeqczaleenSRZA" base_StructuralFeature="_MMdpk_g9EeqczaleenSRZA"/>
  <OpenModel_Profile:Experimental xmi:id="_XGnqAPg9EeqczaleenSRZA" base_Element="_MMdpkPg9EeqczaleenSRZA"/>
  <OpenModel_Profile:Reference xmi:id="_XG7zEPg9EeqczaleenSRZA" base_Element="_MMdpkPg9EeqczaleenSRZA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIlA4fg9EeqczaleenSRZA" base_StructuralFeature="_sIlA4Pg9EeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kB5YMfg-EeqczaleenSRZA" base_StructuralFeature="_kB5YMPg-EeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vRnY8Pg-EeqczaleenSRZA" base_StructuralFeature="_vRmx4Pg-EeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J271SfhAEeqczaleenSRZA" base_StructuralFeature="_J271QfhAEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J2-RgPhAEeqczaleenSRZA" base_StructuralFeature="_J271Q_hAEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J2-4kPhAEeqczaleenSRZA" base_StructuralFeature="_J271RfhAEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J2-4kfhAEeqczaleenSRZA" base_StructuralFeature="_J271R_hAEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i3qu0PhAEeqczaleenSRZA" base_StructuralFeature="_i3qHwPhAEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-1ymkfhAEeqczaleenSRZA" base_StructuralFeature="_-1ymkPhAEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_O2uTkfhBEeqczaleenSRZA" base_StructuralFeature="_O2uTkPhBEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kJUugPhBEeqczaleenSRZA" base_StructuralFeature="_kJUHcPhBEeqczaleenSRZA"/>
  <OpenModel_Profile:Experimental xmi:id="_ZBNVIPhCEeqczaleenSRZA" base_Element="_J271QPhAEeqczaleenSRZA"/>
  <OpenModel_Profile:Reference xmi:id="_ZBisUPhCEeqczaleenSRZA" base_Element="_J271QPhAEeqczaleenSRZA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oS3hUfhCEeqczaleenSRZA" base_StructuralFeature="_oS3hUPhCEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2459ofhCEeqczaleenSRZA" base_StructuralFeature="_2459oPhCEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_A0LT8fhDEeqczaleenSRZA" base_StructuralFeature="_A0LT8PhDEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i-MGMfhDEeqczaleenSRZA" base_StructuralFeature="_i-MGMPhDEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tQ8vcfhDEeqczaleenSRZA" base_StructuralFeature="_tQ8vcPhDEeqczaleenSRZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rDuygPhaEeqImeFkB-PnTA" base_StructuralFeature="_rDsWQPhaEeqImeFkB-PnTA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rD1gM_haEeqImeFkB-PnTA" base_StructuralFeature="_rD1gMvhaEeqImeFkB-PnTA"/>
  <OpenModel_Profile:Experimental xmi:id="_C35yUPhbEeqImeFkB-PnTA" base_Element="_rDsWQPhaEeqImeFkB-PnTA"/>
  <OpenModel_Profile:Reference xmi:id="_C4PJgPhbEeqImeFkB-PnTA" base_Element="_rDsWQPhaEeqImeFkB-PnTA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HSx60_heEeqImeFkB-PnTA" base_StructuralFeature="_HSx60vheEeqImeFkB-PnTA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HS2zU_heEeqImeFkB-PnTA" base_StructuralFeature="_HS2zUvheEeqImeFkB-PnTA"/>
  <OpenModel_Profile:Experimental xmi:id="_vez54PheEeqImeFkB-PnTA" base_Element="_HSx60vheEeqImeFkB-PnTA"/>
  <OpenModel_Profile:Reference xmi:id="_vfIC8PheEeqImeFkB-PnTA" base_Element="_HSx60vheEeqImeFkB-PnTA" reference="IFA011 v3.3.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fDoCkATPEeuUzLXQ51gGgw" base_StructuralFeature="_fDnbgATPEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Experimental xmi:id="_rFeq4ATPEeuUzLXQ51gGgw" base_Element="_fDnbgATPEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Reference xmi:id="_rF0pIATPEeuUzLXQ51gGgw" base_Element="_fDnbgATPEeuUzLXQ51gGgw" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l3zPoQTQEeuUzLXQ51gGgw" base_StructuralFeature="_l3zPoATQEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6ZDQsgTREeuUzLXQ51gGgw" base_StructuralFeature="_6ZDQsATREeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NSuscgTSEeuUzLXQ51gGgw" base_StructuralFeature="_NSuscATSEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UwllIgTSEeuUzLXQ51gGgw" base_StructuralFeature="_UwllIATSEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ehoocgTSEeuUzLXQ51gGgw" base_StructuralFeature="_ehoocATSEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_a_8_ggTUEeuUzLXQ51gGgw" base_StructuralFeature="_a_8_gATUEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_p-5EAgTUEeuUzLXQ51gGgw" base_StructuralFeature="_p-5EAATUEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Experimental xmi:id="_uWkO4ATUEeuUzLXQ51gGgw" base_Element="_rqNLwATTEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Reference xmi:id="_uW60MATUEeuUzLXQ51gGgw" base_Element="_rqNLwATTEeuUzLXQ51gGgw" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:Experimental xmi:id="_9iEIsATUEeuUzLXQ51gGgw" base_Element="_qVEPsATREeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Reference xmi:id="_9iauAATUEeuUzLXQ51gGgw" base_Element="_qVEPsATREeuUzLXQ51gGgw" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:Experimental xmi:id="_WmDxoATVEeuUzLXQ51gGgw" base_Element="_l3zPoATQEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Reference xmi:id="_WmZv4ATVEeuUzLXQ51gGgw" base_Element="_l3zPoATQEeuUzLXQ51gGgw" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ogGVUQTVEeuUzLXQ51gGgw" base_StructuralFeature="_ogGVUATVEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Experimental xmi:id="_4fKaEATVEeuUzLXQ51gGgw" base_Element="_ogGVUATVEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:Reference xmi:id="_4fg_YATVEeuUzLXQ51gGgw" base_Element="_ogGVUATVEeuUzLXQ51gGgw" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2OL5IQTZEeuUzLXQ51gGgw" base_StructuralFeature="_2OL5IATZEeuUzLXQ51gGgw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ovwS4A2REeuBquWJMTL0qg" base_StructuralFeature="_ovvr0A2REeuBquWJMTL0qg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ov2Zgw2REeuBquWJMTL0qg" base_StructuralFeature="_ov2Zgg2REeuBquWJMTL0qg"/>
  <OpenModel_Profile:Experimental xmi:id="_bHJF0A8KEeuBquWJMTL0qg" base_Element="_ovvr0A2REeuBquWJMTL0qg"/>
  <OpenModel_Profile:Reference xmi:id="_bHm_4A8KEeuBquWJMTL0qg" base_Element="_ovvr0A2REeuBquWJMTL0qg" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_IFkAYQ8MEeuBquWJMTL0qg" base_Class="_IFkAYA8MEeuBquWJMTL0qg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UukIQw8MEeuBquWJMTL0qg" base_StructuralFeature="_UukIQA8MEeuBquWJMTL0qg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YRO9xA8MEeuBquWJMTL0qg" base_StructuralFeature="_YRO9wA8MEeuBquWJMTL0qg"/>
  <OpenModel_Profile:Experimental xmi:id="_g1tgQA8MEeuBquWJMTL0qg" base_Element="_IFkAYA8MEeuBquWJMTL0qg"/>
  <OpenModel_Profile:Reference xmi:id="_g2JlIA8MEeuBquWJMTL0qg" base_Element="_IFkAYA8MEeuBquWJMTL0qg" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TWqDsw8YEeuBquWJMTL0qg" base_StructuralFeature="_TWqDsg8YEeuBquWJMTL0qg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TWtuEQ8YEeuBquWJMTL0qg" base_StructuralFeature="_TWtuEA8YEeuBquWJMTL0qg"/>
  <OpenModel_Profile:Experimental xmi:id="_6FWiEA8YEeuBquWJMTL0qg" base_Element="_TWqDsg8YEeuBquWJMTL0qg"/>
  <OpenModel_Profile:Reference xmi:id="_6F0cIA8YEeuBquWJMTL0qg" base_Element="_TWqDsg8YEeuBquWJMTL0qg" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_66t9sR0XEeuefrxxkEb1lQ" base_StructuralFeature="_66t9sB0XEeuefrxxkEb1lQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_66zdQR0XEeuefrxxkEb1lQ" base_StructuralFeature="_66zdQB0XEeuefrxxkEb1lQ"/>
  <OpenModel_Profile:Experimental xmi:id="_nwyqAB0YEeuefrxxkEb1lQ" base_Element="_66t9sB0XEeuefrxxkEb1lQ"/>
  <OpenModel_Profile:Reference xmi:id="_nxHaIB0YEeuefrxxkEb1lQ" base_Element="_66t9sB0XEeuefrxxkEb1lQ" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:PassedByReference xmi:id="_nxXRwB0YEeuefrxxkEb1lQ" base_Property="_66t9sB0XEeuefrxxkEb1lQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_SYZyIVBHEeu9q4B_TIiAOQ" base_Class="_SYZyIFBHEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6_ttElBJEeu9q4B_TIiAOQ" base_StructuralFeature="_6_ttEFBJEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ADSUolBKEeu9q4B_TIiAOQ" base_StructuralFeature="_ADSUoFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSe0gFBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSeNcFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSjtAFBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSjF8FBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSk7IlBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSk7IFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSmwUFBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSmJQFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSn-clBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSn-cFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSpzolBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSpzoFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSrBwlBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSrBwFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSteAFBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSs28FBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSvTNFBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSvTMFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DSxIYlBKEeu9q4B_TIiAOQ" base_StructuralFeature="_DSxIYFBKEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:Experimental xmi:id="_Pmbc8FBLEeu9q4B_TIiAOQ" base_Element="_SYZyIFBHEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:Reference xmi:id="_PrKL8FBLEeu9q4B_TIiAOQ" base_Element="_SYZyIFBHEeu9q4B_TIiAOQ" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ULe1IVBOEeu9q4B_TIiAOQ" base_Class="_ULe1IFBOEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:Experimental xmi:id="_ZhcNMFBOEeu9q4B_TIiAOQ" base_Element="_ULe1IFBOEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:Reference xmi:id="_Zhw9UFBOEeu9q4B_TIiAOQ" base_Element="_ULe1IFBOEeu9q4B_TIiAOQ" reference="IFA011 v4.1.1"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ed1Os1BOEeu9q4B_TIiAOQ" base_StructuralFeature="_ed1OsVBOEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ed4SA1BOEeu9q4B_TIiAOQ" base_StructuralFeature="_ed4SAFBOEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ed45FFBOEeu9q4B_TIiAOQ" base_StructuralFeature="_ed45EFBOEeu9q4B_TIiAOQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ed5gJFBOEeu9q4B_TIiAOQ" base_StructuralFeature="_ed5gIFBOEeu9q4B_TIiAOQ"/>
</xmi:XMI>