summaryrefslogtreecommitdiffstats
path: root/ONAP Information Model/Common.uml
blob: d9b49f0b4e539d57aaeb5690fa2065ca08d60e22 (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
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
<?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:ActionLanguage="http://www.omg.org/spec/ALF/20120827/ActionLanguage-Profile" 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://www.omg.org/spec/ALF/20120827/ActionLanguage-Profile pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#_Kv8EIKFXEeS_KNX0nfvIVQ http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27 OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g">
  <uml:Package xmi:id="_L6FF4DOHEei5Af8DcjrhIQ" name="Common">
    <packagedElement xmi:type="uml:Package" xmi:id="_Uu_4IDOHEei5Af8DcjrhIQ" name="Interfaces"/>
    <packagedElement xmi:type="uml:Package" xmi:id="_W8GB0DOHEei5Af8DcjrhIQ" name="TypeDefinitions">
      <packagedElement xmi:type="uml:DataType" xmi:id="_AuYtcDkBEeiWMf5FLWfdLA" name="Identifier"/>
      <packagedElement xmi:type="uml:DataType" xmi:id="_vxJ9ADafEei23_xWdimG9w" name="KeyValuePair ">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9-F7MCZBEemRA_CB-n5OfQ" name="key">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-0ohoCZBEemRA_CB-n5OfQ" name="value">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_P-qXMD2vEeiu6I5JfRTxxQ" name="SecurityParameters">
        <ownedComment xmi:type="uml:Comment" xmi:id="_P-qXMT2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXMD2vEeiu6I5JfRTxxQ">
          <body>The SecurityParameters contains the signature of a NSD, VLD, PNFD or VNFFGD instance together with information required to validate the signature.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_P-qXMj2vEeiu6I5JfRTxxQ" name="signature">
          <ownedComment xmi:type="uml:Comment" xmi:id="_P-qXMz2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXMj2vEeiu6I5JfRTxxQ">
            <body>Provides the signature of the signed part of the descriptor.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_P-qXND2vEeiu6I5JfRTxxQ" name="algorithm">
          <ownedComment xmi:type="uml:Comment" xmi:id="_P-qXNT2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXND2vEeiu6I5JfRTxxQ">
            <body>Identifies the algorithm used to compute the signature.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_P-qXNj2vEeiu6I5JfRTxxQ" name="certificate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_P-qXNz2vEeiu6I5JfRTxxQ" annotatedElement="_P-qXNj2vEeiu6I5JfRTxxQ">
            <body>Provides a certificate or a reference to a certificate to validate the signature.&#xD;
NOTE: Cardinality of 0 corresponds to the case where the certificate is provided by means outside the NSD</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_P-qXOD2vEeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_P-qXOT2vEeiu6I5JfRTxxQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_oXexoD2uEeiu6I5JfRTxxQ" name="Version">
        <ownedComment xmi:type="uml:Comment" xmi:id="_oXexoT2uEeiu6I5JfRTxxQ" annotatedElement="_oXexoD2uEeiu6I5JfRTxxQ">
          <body>This primitive type defines the version of an element.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_YQwQ0D0NEeiWMf5FLWfdLA" name="Uuid">
        <ownedComment xmi:type="uml:Comment" xmi:id="_YQwQ0T0NEeiWMf5FLWfdLA" annotatedElement="_YQwQ0D0NEeiWMf5FLWfdLA">
          <body>type string {&#xD;
        pattern&#xD;
          '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}'; }&#xD;
&#xD;
A Universally Unique IDentifier in the string representation defined in RFC 4122.  The canonical representation uses lowercase characters.&#xD;
&#xD;
The following is an example of a UUID in string representation: f81d4fae-7dec-11d0-a765-00a0c91e6bf6 &quot;;&#xD;
      reference&#xD;
        &quot;RFC 4122: A Universally Unique IDentifier (UUID) URN Namespace&quot;</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_8dlAoD0TEeiWMf5FLWfdLA" name="Uri">
        <ownedComment xmi:type="uml:Comment" xmi:id="_8dlAoT0TEeiWMf5FLWfdLA" annotatedElement="_8dlAoD0TEeiWMf5FLWfdLA">
          <body>type string;&#xD;
&#xD;
The uri type represents a Uniform Resource Identifier (URI) as defined by STD 66.&#xD;
&#xD;
Objects using the uri type MUST be in US-ASCII encoding, and MUST be normalized as described by RFC 3986 Sections 6.2.1, 6.2.2.1, and 6.2.2.2.  All unnecessary percent-encoding is removed, and all case-insensitive characters are set to lowercase except for hexadecimal digits, which are normalized to uppercase as described in Section 6.2.2.1.&#xD;
&#xD;
The purpose of this normalization is to help provide unique URIs.  Note that this normalization is not sufficient to provide uniqueness.  Two URIs that are textually distinct after this normalization may still be equivalent.&#xD;
&#xD;
Objects using the uri type may restrict the schemes that they permit.  For example, 'data:' and 'urn:' schemes might not be appropriate.&#xD;
&#xD;
A zero-length URI is not a valid URI.  This can be used to express 'URI absent' where required.&#xD;
&#xD;
In the value set and its semantics, this type is equivalent to the Uri SMIv2 textual convention defined in RFC 5017.&#xD;
    reference&#xD;
     &quot;RFC 3986: Uniform Resource Identifier (URI): Generic Syntax&#xD;
      RFC 3305: Report from the Joint W3C/IETF URI Planning Interest Group: Uniform Resource Identifiers (URIs), URLs, and Uniform Resource Names (URNs): Clarifications and Recommendations&#xD;
      RFC 5017: MIB Textual Conventions for Uniform Resource Identifiers (URIs)&quot;</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_8rNJgD2uEeiu6I5JfRTxxQ" name="Rule">
        <ownedComment xmi:type="uml:Comment" xmi:id="_8rNJgT2uEeiu6I5JfRTxxQ" annotatedElement="_8rNJgD2uEeiu6I5JfRTxxQ">
          <body>Primitive type describing a rule.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_p3EKoDm0EeiWMf5FLWfdLA" name="Number">
        <ownedComment xmi:type="uml:Comment" xmi:id="_xMGegDm0EeiWMf5FLWfdLA" annotatedElement="_p3EKoDm0EeiWMf5FLWfdLA">
          <body>This primitive type is a superset of the standard UML numbering primitives, e.g. Integer and Real.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_2x4t0InuEeiOe-BKGdv_Yg" name="Priority">
        <ownedComment xmi:type="uml:Comment" xmi:id="_0Wo3YJEVEei9Vqs7Ti8Wxg" annotatedElement="_2x4t0InuEeiOe-BKGdv_Yg">
          <body>priority - processing priority.&#xD;
</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_9n34wInvEeiOe-BKGdv_Yg" name="HIGH"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Fmi_gInwEeiOe-BKGdv_Yg" name="MEDIUM"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_HCziIInwEeiOe-BKGdv_Yg" name="NORMAL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_H65nwInwEeiOe-BKGdv_Yg" name="LOW"/>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_Dg2QIJaaEeiGg_moIHe9Sw" name="Object">
        <ownedComment xmi:type="uml:Comment" xmi:id="_LwOsYJaaEeiGg_moIHe9Sw" annotatedElement="_Dg2QIJaaEeiGg_moIHe9Sw">
          <body>object - objects are model elements that represent instances of a class or of classes</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_W7iKYJaeEeiGg_moIHe9Sw" name="Key">
        <ownedComment xmi:type="uml:Comment" xmi:id="_yjHqEJahEeiGg_moIHe9Sw" annotatedElement="_W7iKYJaeEeiGg_moIHe9Sw">
          <body>key - the key datatype is a tuple which provides the name of a key along with its value and relative order.&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HR738JahEeiGg_moIHe9Sw" name="keyName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0osPcJahEeiGg_moIHe9Sw" annotatedElement="_HR738JahEeiGg_moIHe9Sw">
            <body>keyName - Name of the key.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_J6eAcJahEeiGg_moIHe9Sw" name="keyOrder">
          <ownedComment xmi:type="uml:Comment" xmi:id="_2Uj7YJahEeiGg_moIHe9Sw" annotatedElement="_J6eAcJahEeiGg_moIHe9Sw">
            <body>keyOrder - Relative sequence or order of the key (with respect to other keys).&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vMN_sJahEeiGg_moIHe9Sw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vMcpMJahEeiGg_moIHe9Sw" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KpkiIJahEeiGg_moIHe9Sw" name="keyValue">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4XZV0JahEeiGg_moIHe9Sw" annotatedElement="_KpkiIJahEeiGg_moIHe9Sw">
            <body>keyValue - Value of the key.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_uFPwkJahEeiGg_moIHe9Sw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_uFSz4JahEeiGg_moIHe9Sw" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_tMoywDnJEeiWMf5FLWfdLA" name="RuleType">
        <ownedComment xmi:type="uml:Comment" xmi:id="_xofTADnJEeiWMf5FLWfdLA" annotatedElement="_tMoywDnJEeiWMf5FLWfdLA">
          <body>Specifies the type of rule.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zZIKMDnJEeiWMf5FLWfdLA" name="AFFINITY"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_1qskMDnJEeiWMf5FLWfdLA" name="ANTI_AFFINITY"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_B3kJsDnKEeiWMf5FLWfdLA" name="RuleScope">
        <ownedComment xmi:type="uml:Comment" xmi:id="_F2zmcDnKEeiWMf5FLWfdLA" annotatedElement="_B3kJsDnKEeiWMf5FLWfdLA">
          <body>Defines the scope of the rule.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_IJCHwDnKEeiWMf5FLWfdLA" name="NFVI_POP"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_LgsnIDnKEeiWMf5FLWfdLA" name="ZONE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_ON-FsDnKEeiWMf5FLWfdLA" name="ZONE_GROUP"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_RUyssDnKEeiWMf5FLWfdLA" name="NFVI_NODE"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_oyf9MOwXEei7-e9MrPJW7Q" name="TimePeriod">
        <ownedComment xmi:type="uml:Comment" xmi:id="_AEd44AMDEemoQ5ZgWCUg_g" annotatedElement="_oyf9MOwXEei7-e9MrPJW7Q">
          <body>A base / value business entity used to represent a period of time, between two timepoints</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ECOu8AMDEemoQ5ZgWCUg_g" name="startDateTime" type="_KwZPMP8VEeiZ-fXSiUXhdA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LfB3sAMDEemoQ5ZgWCUg_g" annotatedElement="_ECOu8AMDEemoQ5ZgWCUg_g">
            <body>An instant of time, starting at the TimePeriod&#xD;
&#xD;
Notes:&#xD;
If null, then represents to the beginning of time</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_EpMoUAMDEemoQ5ZgWCUg_g" name="endDateTime" type="_KwZPMP8VEeiZ-fXSiUXhdA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NNvcQAMDEemoQ5ZgWCUg_g" annotatedElement="_EpMoUAMDEemoQ5ZgWCUg_g">
            <body>An instant of time, ending at the TimePeriod:&#xD;
&#xD;
Notes:&#xD;
If null, then represents to the end of time</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_KwZPMP8VEeiZ-fXSiUXhdA" name="DateTime">
        <ownedComment xmi:type="uml:Comment" xmi:id="_PeVlAP8VEeiZ-fXSiUXhdA" annotatedElement="_KwZPMP8VEeiZ-fXSiUXhdA">
          <body>DateTime - RFC 2822 standard date/time format.&#xD;
&#xD;
RFC 2822 format&#xD;
day-of-week, dd MM yyyy HH’:’mm’:’ss ‘GMT’&#xD;
&#xD;
e.g. Tue, 21 Jun 2016 14:05:20 GMT</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_s_Ka4JESEei9Vqs7Ti8Wxg" name="UnixEpoch">
        <ownedComment xmi:type="uml:Comment" xmi:id="_zDpF0JESEei9Vqs7Ti8Wxg" annotatedElement="_s_Ka4JESEei9Vqs7Ti8Wxg">
          <body>the latest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:PrimitiveType" xmi:id="_T7JtYM6AEemcqf4p4jcudw" name="File">
        <ownedComment xmi:type="uml:Comment" xmi:id="_XRSiwM6AEemcqf4p4jcudw" annotatedElement="_T7JtYM6AEemcqf4p4jcudw">
          <body>A primitive Type</body>
        </ownedComment>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_1t6IcN3ZEei-jeeHUjfpLA" name="Network">
      <packagedElement xmi:type="uml:Package" xmi:id="_Sgc88DOHEei5Af8DcjrhIQ" name="Diagrams">
        <ownedComment xmi:type="uml:Comment" xmi:id="_41HfsLtYEeiq-o0aE00M6w">
          <body>Legend&#xD;
Blue - Review Complete&#xD;
Green - Ready for Review&#xD;
White - Not Ready for Review</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_gJp1wNx5Eei0G_d67y10Rg">
          <body>configurableProperties is a datatype</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_rRjrIN0lEeiRzJu73dYz2w">
          <body>Does NF have a direct asociation to elementgroups, or would that be through a df?</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_3escoOEmEeidEfhiAaiFzQ">
          <body>Onboarding??</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_kq9wgOEpEeidEfhiAaiFzQ">
          <body>Onboarding</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_MbFkgOQ8Eei2Ub3VuxG4ag">
          <body>Abstract</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_N7jRsOQ8Eei2Ub3VuxG4ag">
          <body>Concrete</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_tYsxQPgVEeiEqKXVVPCm1Q">
          <body>Design Time</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_y6ZfQPgVEeiEqKXVVPCm1Q">
          <body>Runtime</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_woyW8CCvEemw1L3J4dNy4w">
          <body>Attributes in Pink are adds (not in IFA 01</body>
        </ownedComment>
        <packagedElement xmi:type="uml:Class" xmi:id="_lZpZgPGSEei7s9ZrY0W7MQ" name="PlatformCpDescriptor"/>
        <packagedElement xmi:type="uml:Association" xmi:id="_UPPD8FVTEemo4a1c6QCrGw" name="PnfInstanceHasLocation" memberEnd="_UPUjgFVTEemo4a1c6QCrGw _UPaDEFVTEemo4a1c6QCrGw">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_UPTVYFVTEemo4a1c6QCrGw" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_UPT8cFVTEemo4a1c6QCrGw" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_UPUjgFVTEemo4a1c6QCrGw" name="pnfinstance" type="_U37_kOQ9Eei2Ub3VuxG4ag" association="_UPPD8FVTEemo4a1c6QCrGw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_JxqcYFVUEemo4a1c6QCrGw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_JxzmUFVUEemo4a1c6QCrGw" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_UPaDEFVTEemo4a1c6QCrGw" name="place" type="_Q8qb0CYzEemRA_CB-n5OfQ" association="_UPPD8FVTEemo4a1c6QCrGw"/>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_OFje8DOHEei5Af8DcjrhIQ" name="NetworkObjectClasses">
        <packagedElement xmi:type="uml:Class" xmi:id="_Tw79sD2pEeiu6I5JfRTxxQ" name="VirtualLinkDesc" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Tw79sT2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79sD2pEeiu6I5JfRTxxQ">
            <body>Common part of the various VLDs.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_uKiJwDxkEemSdYSKacDoqQ" general="_jJ_NcDxkEemSdYSKacDoqQ"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Tw79sj2pEeiu6I5JfRTxxQ" name="virtualLinkDescId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Tw79sz2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79sj2pEeiu6I5JfRTxxQ">
              <body>Uniquely identifies a VLD in the parent descriptor.&#xD;
For VnfVirtualLinkDesc, the parent descriptor is the VNFD.&#xD;
For NsVirtualLinkDesc, the parent descriptor is the NSD.&#xD;
Note: the description of this class are different in ETSI GS NFV IFA 011 and ETSI GS NFV IFA 014. The present definition merges the 2 definitions.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Tw79tD2pEeiu6I5JfRTxxQ" name="connectivityType" type="_ImxsgDeBEeiIfPeSAqyGdQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Tw79tT2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79tD2pEeiu6I5JfRTxxQ">
              <body>Specifies the protocol exposed by a VL and the flow pattern supported by the VL.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Tw79uj2pEeiu6I5JfRTxxQ" name="description">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Tw79uz2pEeiu6I5JfRTxxQ" annotatedElement="_Tw79uj2pEeiu6I5JfRTxxQ">
              <body>Provides human-readable information on the purpose of the VL (e.g. control plane traffic).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Tw79vD2pEeiu6I5JfRTxxQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Tw79vT2pEeiu6I5JfRTxxQ" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_Tw5PIES0EeiVGPeZpaYNtQ" name="VirtualLink" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZmFg4ES0EeiVGPeZpaYNtQ" annotatedElement="_Tw5PIES0EeiVGPeZpaYNtQ">
            <body>A set of connection points along with the connectivity relationship between them and any associated target performance metrics (e.g. bandwidth, latency, QoS). NOTE: The Virtual Link can interconnect two or more entities (VNF components, VNFs, or PNFs) and it is supported by a Virtual Network (VN) of the NFVI.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_vV1x4kS0EeiVGPeZpaYNtQ" name="_linkPort" type="_il0cAES0EeiVGPeZpaYNtQ" aggregation="composite" association="_vV0jwES0EeiVGPeZpaYNtQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_ijfEQES1EeiVGPeZpaYNtQ" annotatedElement="_vV1x4kS0EeiVGPeZpaYNtQ">
              <body>Link ports of this VL.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vWIFwES0EeiVGPeZpaYNtQ" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vWRPsES0EeiVGPeZpaYNtQ" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_CISkgIOQEeivtfz_CvwDeA" name="vlInstanceId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_BUWeUJBCEeiKQK-pyZkERg" annotatedElement="_CISkgIOQEeivtfz_CvwDeA">
              <body>Identifier of the virtual link instance.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_DYK4AIOQEeivtfz_CvwDeA" name="vlName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_KZ9X8JBCEeiKQK-pyZkERg" annotatedElement="_DYK4AIOQEeivtfz_CvwDeA">
              <body>An intelligent or human readable name of the virtual link instance.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ECr0oIOQEeivtfz_CvwDeA" name="vlNameAlt">
            <ownedComment xmi:type="uml:Comment" xmi:id="_VXKFUJBCEeiKQK-pyZkERg" annotatedElement="_ECr0oIOQEeivtfz_CvwDeA">
              <body>Additional intelligent or human readable name of the virtual link instance.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Fpc-IIOQEeivtfz_CvwDeA" name="vlType">
            <ownedComment xmi:type="uml:Comment" xmi:id="_HJ2jkJWcEeiBQt0DCQoFTw" annotatedElement="_Fpc-IIOQEeivtfz_CvwDeA">
              <body>Generic description of the type of Virtual Link</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_KS51gIOQEeivtfz_CvwDeA" name="vlRole">
            <ownedComment xmi:type="uml:Comment" xmi:id="_LTVhcJWcEeiBQt0DCQoFTw" annotatedElement="_KS51gIOQEeivtfz_CvwDeA">
              <body>Role in the network this virtual link will be providing</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_LMkBYIOQEeivtfz_CvwDeA" name="vlFunction">
            <ownedComment xmi:type="uml:Comment" xmi:id="_RAClkJWcEeiBQt0DCQoFTw" annotatedElement="_LMkBYIOQEeivtfz_CvwDeA">
              <body>English description of the function this specific virtual link will be providing</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_LuAhkIOQEeivtfz_CvwDeA" name="vlBandwidth">
            <ownedComment xmi:type="uml:Comment" xmi:id="_WGhXMJWcEeiBQt0DCQoFTw" annotatedElement="_LuAhkIOQEeivtfz_CvwDeA">
              <body>virtual link assigned (actual) bandwidth</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_NRP18IOQEeivtfz_CvwDeA" name="provStatus">
            <ownedComment xmi:type="uml:Comment" xmi:id="_r2dj8JBCEeiKQK-pyZkERg" annotatedElement="_NRP18IOQEeivtfz_CvwDeA">
              <body>provisioning status, used as a trigger for operational monitoring of this resource by service assurance systems  valid value example: PROVISIONED, PREPROVISIONED, CAPPED</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_OGn-wIOQEeivtfz_CvwDeA" name="adminStatus">
            <ownedComment xmi:type="uml:Comment" xmi:id="_wxryQJWcEeiBQt0DCQoFTw" annotatedElement="_OGn-wIOQEeivtfz_CvwDeA">
              <body>Administrative status of the virtual link</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_fvq58IUNEeiRGZJrXkgR0w" name="minBitRateRequirements" type="_LsX6UDgXEeiOYfGHew0BGg">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Jw1XcJWdEeiBQt0DCQoFTw" annotatedElement="_fvq58IUNEeiRGZJrXkgR0w">
              <body>Specifies the minimum bitrate requirements for the virtual link</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_lXNxQIUNEeiRGZJrXkgR0w" name="maxBitRateRequirements" type="_LsX6UDgXEeiOYfGHew0BGg">
            <ownedComment xmi:type="uml:Comment" xmi:id="_MYlc0JWdEeiBQt0DCQoFTw" annotatedElement="_lXNxQIUNEeiRGZJrXkgR0w">
              <body>Specifies the maximum bitrate requirements for the virtual link</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_mgbcEIUNEeiRGZJrXkgR0w" name="dhcpEnabled">
            <ownedComment xmi:type="uml:Comment" xmi:id="_PU6EAJWdEeiBQt0DCQoFTw" annotatedElement="_mgbcEIUNEeiRGZJrXkgR0w">
              <body>Indicates whether DHCP is enabled</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_H6dtcIUPEeiRGZJrXkgR0w" name="vlanTransparent">
            <ownedComment xmi:type="uml:Comment" xmi:id="_SVm04JWdEeiBQt0DCQoFTw" annotatedElement="_H6dtcIUPEeiRGZJrXkgR0w">
              <body>Indicates whether VLAn transparent mode is supported</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_IZdWkIUPEeiRGZJrXkgR0w" name="vlTrunkModeEnabled">
            <ownedComment xmi:type="uml:Comment" xmi:id="_UihYYJWdEeiBQt0DCQoFTw" annotatedElement="_IZdWkIUPEeiRGZJrXkgR0w">
              <body>Indicates whether Trunk Mode is enabled</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_I4c_sIUPEeiRGZJrXkgR0w" name="vlanIdOuter">
            <ownedComment xmi:type="uml:Comment" xmi:id="_SSWHsJWsEeiBQt0DCQoFTw" annotatedElement="_I4c_sIUPEeiRGZJrXkgR0w">
              <body>Outer vlan tag&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_JZPYkIUPEeiRGZJrXkgR0w" name="vlanIdInner">
            <ownedComment xmi:type="uml:Comment" xmi:id="_T6rXcJWsEeiBQt0DCQoFTw" annotatedElement="_JZPYkIUPEeiRGZJrXkgR0w">
              <body>Inner vlan tag</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_PV-2kJdUEei-sOl6ywWHlg" name="connectivityType" type="_ImxsgDeBEeiIfPeSAqyGdQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_iixM0JdaEei-sOl6ywWHlg" annotatedElement="_PV-2kJdUEei-sOl6ywWHlg">
              <body>Identified the layerProtocol and flowPattern  used by the virtual link</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_il0cAES0EeiVGPeZpaYNtQ" name="LinkPort" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nXXfcES0EeiVGPeZpaYNtQ" annotatedElement="_il0cAES0EeiVGPeZpaYNtQ">
            <body>Represents the port of the link.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_H85nMkS1EeiVGPeZpaYNtQ" name="_cp" type="_8naVoES0EeiVGPeZpaYNtQ" association="_H8vPIES1EeiVGPeZpaYNtQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_pHN3AES1EeiVGPeZpaYNtQ" annotatedElement="_H85nMkS1EeiVGPeZpaYNtQ">
              <body>CP to be connected to this link port.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H8_t0ES1EeiVGPeZpaYNtQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H9AU4ES1EeiVGPeZpaYNtQ" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_8naVoES0EeiVGPeZpaYNtQ" name="Cp">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Bp-3oES1EeiVGPeZpaYNtQ" annotatedElement="_8naVoES0EeiVGPeZpaYNtQ">
            <body>Parent for all connection point classes.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_gQaSsIUREeiRGZJrXkgR0w" name="cpId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_KcrfUJBDEeiKQK-pyZkERg" annotatedElement="_gQaSsIUREeiRGZJrXkgR0w">
              <body>Identifier of the connection point instance.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_g3C04IUREeiRGZJrXkgR0w" name="cpName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_NGPikJBDEeiKQK-pyZkERg" annotatedElement="_g3C04IUREeiRGZJrXkgR0w">
              <body>Name of the Cp instance.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_haSE0IUREeiRGZJrXkgR0w" name="cpNameAlt">
            <ownedComment xmi:type="uml:Comment" xmi:id="_P5gUYJBDEeiKQK-pyZkERg" annotatedElement="_haSE0IUREeiRGZJrXkgR0w">
              <body>alternative name of the Cp instance.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_h5ESkIUREeiRGZJrXkgR0w" name="cpType">
            <ownedComment xmi:type="uml:Comment" xmi:id="_8dp44JWWEeiBQt0DCQoFTw" annotatedElement="_h5ESkIUREeiRGZJrXkgR0w">
              <body>Generic description of the type of Cp</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_idmjAIUREeiRGZJrXkgR0w" name="cpRole">
            <ownedComment xmi:type="uml:Comment" xmi:id="_-6o4sJWWEeiBQt0DCQoFTw" annotatedElement="_idmjAIUREeiRGZJrXkgR0w">
              <body>Role in the network this Cp will be providing</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_i5kGQIUREeiRGZJrXkgR0w" name="cpFunction">
            <ownedComment xmi:type="uml:Comment" xmi:id="_ChV5oJWXEeiBQt0DCQoFTw" annotatedElement="_i5kGQIUREeiRGZJrXkgR0w">
              <body>English description of the function this specific Cp will be providing</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_jazyIIUREeiRGZJrXkgR0w" name="cpDescription">
            <ownedComment xmi:type="uml:Comment" xmi:id="_FfiwIJWXEeiBQt0DCQoFTw" annotatedElement="_jazyIIUREeiRGZJrXkgR0w">
              <body>Cp description</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_j7onQIUREeiRGZJrXkgR0w" name="cpBandwidth">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Nx62AJWXEeiBQt0DCQoFTw">
              <body>Cp (max? assigned?) bandwidth</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_vLv2oJdGEei-sOl6ywWHlg" annotatedElement="_j7onQIUREeiRGZJrXkgR0w">
              <body>Cp assigned (actual) bandwidth</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ljD4EIUREeiRGZJrXkgR0w" name="provStatus">
            <ownedComment xmi:type="uml:Comment" xmi:id="_VBTUoJBDEeiKQK-pyZkERg" annotatedElement="_ljD4EIUREeiRGZJrXkgR0w">
              <body>provisioning status, used as a trigger for operational monitoring of this resource by service assurance systems  valid value example: PROVISIONED, PREPROVISIONED, CAPPED</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_l-B80IUREeiRGZJrXkgR0w" name="adminsStatus">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Ve03UJWXEeiBQt0DCQoFTw" annotatedElement="_l-B80IUREeiRGZJrXkgR0w">
              <body>Administrative status of the connection point.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_mYlK0IUREeiRGZJrXkgR0w" name="protocol">
            <ownedComment xmi:type="uml:Comment" xmi:id="_XjEnAJWXEeiBQt0DCQoFTw" annotatedElement="_mYlK0IUREeiRGZJrXkgR0w">
              <body>Protocol used by the Cp</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_mw0rsIUREeiRGZJrXkgR0w" name="trunkMode">
            <ownedComment xmi:type="uml:Comment" xmi:id="_wLdVMJWbEeiBQt0DCQoFTw" annotatedElement="_mw0rsIUREeiRGZJrXkgR0w">
              <body>Indicator whether the Cp is in trunk mode</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_nJ1BkIUREeiRGZJrXkgR0w" name="addressType">
            <ownedComment xmi:type="uml:Comment" xmi:id="_yukyMJWbEeiBQt0DCQoFTw" annotatedElement="_nJ1BkIUREeiRGZJrXkgR0w">
              <body>Type of address: MAC address or IP address</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_n41coIUREeiRGZJrXkgR0w" name="L2addressData" type="_X9TdUDdPEeiIfPeSAqyGdQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_1RqaAJWbEeiBQt0DCQoFTw" annotatedElement="_n41coIUREeiRGZJrXkgR0w">
              <body>Only present when addressType is MAC address</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_E8BDAJddEei-sOl6ywWHlg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_E8Jl4JddEei-sOl6ywWHlg" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_fFI88IUSEeiRGZJrXkgR0w" name="L3addressData" type="_4oResDdPEeiIfPeSAqyGdQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_5QoxAJWbEeiBQt0DCQoFTw" annotatedElement="_fFI88IUSEeiRGZJrXkgR0w">
              <body>Only present when addressType is IP address</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GNTrwJddEei-sOl6ywWHlg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GNeq4JddEei-sOl6ywWHlg" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_7pUNEDa7EeivvI-m1BaAbA" name="Cpd " isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_R0MsAEbwEei7eo5RdnNiBQ" annotatedElement="_7pUNEDa7EeivvI-m1BaAbA">
            <body>The Cpd class specifies the characteristics of connection points attached to NFs and NSs. This is an abstract class used as parent for the various Cpd classes.&#xD;
&#xD;
Note 1: the description of this class is different in ETSI GS NFV IFA 011 and ETSI GS NFV IFA 014. The present definition uses the definition in ETSI GS NFV IFA 014 as it is the more general.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_knSmcDa8EeivvI-m1BaAbA" name="cpdId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_XFxTUEbwEei7eo5RdnNiBQ" annotatedElement="_knSmcDa8EeivvI-m1BaAbA">
              <body>Identifier of this Cpd information element.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_lRLQ8Da8EeivvI-m1BaAbA" name="cpdRole">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Zs7i0EbwEei7eo5RdnNiBQ" annotatedElement="_lRLQ8Da8EeivvI-m1BaAbA">
              <body>Identifies the role of the port in the context of the traffic flow patterns in the VNF or parent NS.&#xD;
&#xD;
For example a VNF with a tree flow pattern within the VNF will have legal cpRoles of ROOT and LEAF.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9HlFYDa8EeivvI-m1BaAbA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9HrMADa8EeivvI-m1BaAbA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_luvWsDa8EeivvI-m1BaAbA" name="description">
            <ownedComment xmi:type="uml:Comment" xmi:id="_cEl9wEbwEei7eo5RdnNiBQ" annotatedElement="_luvWsDa8EeivvI-m1BaAbA">
              <body>Provides human-readable information on the purpose of the CP (e.g. CP for control plane traffic).&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-jjUIDa8EeivvI-m1BaAbA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-jozsDa8EeivvI-m1BaAbA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_oWHBkDa8EeivvI-m1BaAbA" name="cpProtocol" type="_PjIasDa9EeivvI-m1BaAbA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_eZqXsEbwEei7eo5RdnNiBQ" annotatedElement="_oWHBkDa8EeivvI-m1BaAbA">
              <body>Identifies the protocol layering information the CP uses for connectivity purposes and associated information. There shall be one cpProtocol for each layer protocol as indicated by the attribute layerProtocol.&#xD;
&#xD;
Editor's note: the attribute &quot;layerProtocol&quot; still needs further discussion and not included in this table.&#xD;
</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DooXkDa9EeivvI-m1BaAbA" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DospADa9EeivvI-m1BaAbA" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_pJTZEDa8EeivvI-m1BaAbA" name="trunkMode">
            <ownedComment xmi:type="uml:Comment" xmi:id="_gaoJ4EbwEei7eo5RdnNiBQ" annotatedElement="_pJTZEDa8EeivvI-m1BaAbA">
              <body>Information about whether the CP instantiated from this CPD is in Trunk mode (802.1Q or other).&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_MVvycC4zEemS0_wZSU3sbA" name="layerProtocol" visibility="public" type="_tFQGcDnLEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_bLoooC4zEemS0_wZSU3sbA" annotatedElement="_MVvycC4zEemS0_wZSU3sbA">
              <body>Identifies which protocol the CP uses for connectivity purposes (Ethernet, MPLS, ODU2, IPV4, IPV6, Pseudo-Wire, etc.).</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_TUOAcC4zEemS0_wZSU3sbA" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_TUg7YC4zEemS0_wZSU3sbA" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_BUajMEUBEemWRYeHGX88Yw" name="securityGroupRuleId" visibility="public" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_MzcyUEUBEemWRYeHGX88Yw" annotatedElement="_BUajMEUBEemWRYeHGX88Yw">
              <body>Reference of the security group rules bound to this CPD.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H32bAEUBEemWRYeHGX88Yw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H4NnYEUBEemWRYeHGX88Yw" value="*"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_0AbUYDnBEeiWMf5FLWfdLA" name="AffinityOrAntiAffinityGroup">
          <ownedComment xmi:type="uml:Comment" xmi:id="_L_HiIDnCEeiWMf5FLWfdLA" annotatedElement="_0AbUYDnBEeiWMf5FLWfdLA">
            <body>The AffinityOrAntiAffinityGroup class describes the affinity or anti-affinity relationship. For NSs, those rules are applicable between the VNF instances created using different VnfProfiles, the Virtual Link instances created using different VlProfiles or the nested NS instances created using different NsProfiles.&#xD;
&#xD;
For VNFs, those rules are applicable between the virtualization containers to be created based on different VDUs, or between internal VLs to be created based on different VnfVirtualLinkDesc(s).</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_6g1tYDnBEeiWMf5FLWfdLA" name="groupId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_6g1tYTnBEeiWMf5FLWfdLA" annotatedElement="_6g1tYDnBEeiWMf5FLWfdLA">
              <body>Identifies an affinity or anti-affinity group to which the affinity or anti-affinity rule applies.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_6g3ikDnBEeiWMf5FLWfdLA" name="type" type="_tMoywDnJEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_6g3ikTnBEeiWMf5FLWfdLA" annotatedElement="_6g3ikDnBEeiWMf5FLWfdLA">
              <body>Specifies whether the rule is an affinity rule or an anti-affinity rule.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_6g4wsDnBEeiWMf5FLWfdLA" name="scope" type="_B3kJsDnKEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_6g4wsTnBEeiWMf5FLWfdLA" annotatedElement="_6g4wsDnBEeiWMf5FLWfdLA">
              <body>Specifies the scope of the rule.</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_rmDCkNxjEei0G_d67y10Rg" name="ExtCpd">
          <generalization xmi:type="uml:Generalization" xmi:id="_haUa8PS4EeiGPpKdxajt7g" general="_7pUNEDa7EeivvI-m1BaAbA"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_AtzKQN0mEeiRzJu73dYz2w" name="PNFDevice"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_yyN_EOEpEeidEfhiAaiFzQ" name="InternalNetworkFunctionDesc"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_w3xrYOQ5Eei2Ub3VuxG4ag" name="PlatformDescriptor (InternalModel)" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Qb96oPoiEeiXda0FrsRiEw" annotatedElement="_w3xrYOQ5Eei2Ub3VuxG4ag">
            <body>PlatformDescriptor is an abstract class that extends Descriptor to represent classes of objects that represent platofrm or internal descriptors.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_JW-ZkFVWEemo4a1c6QCrGw" general="_v04t4DFPEemw1_Ys6rcLWw"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_3L_KMOzmEei7-e9MrPJW7Q" name="invariantID" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_NqVBYPM7EeiKa_-nH9J3Lg" annotatedElement="_3L_KMOzmEei7-e9MrPJW7Q">
              <body>ID that spans multiple versions of the same descriptor.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_T72n8OznEei7-e9MrPJW7Q" name="classification">
            <ownedComment xmi:type="uml:Comment" xmi:id="__2zxsPM7EeiKa_-nH9J3Lg" annotatedElement="_T72n8OznEei7-e9MrPJW7Q">
              <body>Type/Role/Function (a datatype).   Classification may be a base type.</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_9jP4cOQ5Eei2Ub3VuxG4ag" name="PlatformPnfDesciptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_OJ7YQPJbEeibsZxxyZUKdQ" general="_nepCAPGQEei7s9ZrY0W7MQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_4QQU0OQ5Eei2Ub3VuxG4ag" name="PlatformVnfDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_oRWfAPJZEeibsZxxyZUKdQ" general="_nepCAPGQEei7s9ZrY0W7MQ"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_plL-EvJcEeibsZxxyZUKdQ" name="vnfcdescriptor" type="_eR_ykPJcEeibsZxxyZUKdQ" aggregation="composite" association="_plKv8PJcEeibsZxxyZUKdQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_plMlIPJcEeibsZxxyZUKdQ" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_plMlIfJcEeibsZxxyZUKdQ" value="*"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_2_GuoOQ8Eei2Ub3VuxG4ag" name="NfInstance" isAbstract="true"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_cbT5IOQ3Eei2Ub3VuxG4ag" name="OnboardingNfDescriptor" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_2LScIPohEeiXda0FrsRiEw" annotatedElement="_cbT5IOQ3Eei2Ub3VuxG4ag">
            <body>OnboardingNfDescriptor is an abstract class that extends Descriptor to represent classes of objects that represent onboarded network function descriptors.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_JUSaIOwoEei7-e9MrPJW7Q" general="_v04t4DFPEemw1_Ys6rcLWw"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_hmtRoOwnEei7-e9MrPJW7Q" name="ProviderName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_qCWXsPidEeidz5aeWOPexQ" annotatedElement="_hmtRoOwnEei7-e9MrPJW7Q">
              <body>Provider of the NF and of the NFD being onboarded.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_3H0rYNxdEei0G_d67y10Rg" name="productInfoName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_cZ1T4NxfEei0G_d67y10Rg" annotatedElement="_3H0rYNxdEei0G_d67y10Rg">
              <body>Human readable name   for the NF Product. Can change during the NF Product lifetime.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_sUjrMNxfEei0G_d67y10Rg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_sUojsNxfEei0G_d67y10Rg" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_2KkY8NxdEei0G_d67y10Rg" name="softwareVersion">
            <ownedComment xmi:type="uml:Comment" xmi:id="_WemrkNxfEei0G_d67y10Rg" annotatedElement="_2KkY8NxdEei0G_d67y10Rg">
              <body>Software version of   the NF. This is changed when there is any change to the software that is   included in the NF Package.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_4SOpANxdEei0G_d67y10Rg" name="localizationLanguages">
            <ownedComment xmi:type="uml:Comment" xmi:id="_484BINxgEei0G_d67y10Rg" annotatedElement="_4SOpANxdEei0G_d67y10Rg">
              <body>Information about localization languages of   the NF (includes e.g. strings in the NFD).&#xD;
&#xD;
NOTE: This allows to provide one or more   localization languages to support selecting a specific localization language   at NF instantiation time.&#xD;
</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_5gx_cNxgEei0G_d67y10Rg" annotatedElement="_4SOpANxdEei0G_d67y10Rg">
              <body>valueRange: refer to ISO936 https://www.iso.org/iso-639-language-codes.html&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_yHZ-INxgEei0G_d67y10Rg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_yHe2oNxgEei0G_d67y10Rg" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_3fLbcNxdEei0G_d67y10Rg" name="productInfoDescription">
            <ownedComment xmi:type="uml:Comment" xmi:id="_gbzUgNxfEei0G_d67y10Rg" annotatedElement="_3fLbcNxdEei0G_d67y10Rg">
              <body>Human readable   description of the NF Product. Can change during the NF Product lifetime.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qwl-ENxfEei0G_d67y10Rg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qwqPgNxfEei0G_d67y10Rg" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_4o8f4NxdEei0G_d67y10Rg" name="defaultLocalizationLanguage">
            <ownedComment xmi:type="uml:Comment" xmi:id="_-N3ZoNxgEei0G_d67y10Rg" annotatedElement="_4o8f4NxdEei0G_d67y10Rg">
              <body>Default localization language that is   instantiated if no information about selected localization language is   available.&#xD;
</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_JDITANxhEei0G_d67y10Rg" annotatedElement="_4o8f4NxdEei0G_d67y10Rg">
              <body>valueRange: refer to ISO936 https://www.iso.org/iso-639-language-codes.html</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_Kxl_8NxhEei0G_d67y10Rg" annotatedElement="_4o8f4NxdEei0G_d67y10Rg">
              <body>condition: Shall be present if   &quot;localizationLanguage&quot; is present and shall be absent otherwise.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OSTGkNxhEei0G_d67y10Rg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OSX_ENxhEei0G_d67y10Rg" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_jSYcIOzeEei7-e9MrPJW7Q" name="_onboardingcpdescriptor" type="_30qC0OzdEei7-e9MrPJW7Q" aggregation="composite" association="_jSVY0OzeEei7-e9MrPJW7Q">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_jSZDMOzeEei7-e9MrPJW7Q"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_jSZDMezeEei7-e9MrPJW7Q" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_qyf-ouzeEei7-e9MrPJW7Q" name="_onboardingvldescriptor" type="_CYoX4OzeEei7-e9MrPJW7Q" aggregation="composite" association="_qyfXkOzeEei7-e9MrPJW7Q">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qyglsOzeEei7-e9MrPJW7Q"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qyglsezeEei7-e9MrPJW7Q" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_TpqdUOQ3Eei2Ub3VuxG4ag" name="OnboardingNfPackage" isAbstract="true"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_ucHMIOQ3Eei2Ub3VuxG4ag" name="OnboardingPnfDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_VM11YOQ5Eei2Ub3VuxG4ag" general="_cbT5IOQ3Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_ZLtJkOQ3Eei2Ub3VuxG4ag" name="OnboardingPnfPackage">
          <generalization xmi:type="uml:Generalization" xmi:id="_Qg_KQOQ5Eei2Ub3VuxG4ag" general="_TpqdUOQ3Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_fSQ4IOQ3Eei2Ub3VuxG4ag" name="OnboardingVnfDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_WD3kAOQ5Eei2Ub3VuxG4ag" general="_cbT5IOQ3Eei2Ub3VuxG4ag"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ZlOvcOzgEei7-e9MrPJW7Q" name="configurableProperties">
            <type xmi:type="uml:DataType" href="Vnf.uml#_MRthQDmyEeiWMf5FLWfdLA"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_auxxcOzgEei7-e9MrPJW7Q" name="modifiableProperties">
            <type xmi:type="uml:DataType" href="Vnf.uml#_iZQzADkJEeiWMf5FLWfdLA"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_oeROAOzlEei7-e9MrPJW7Q" name="lcmOperationsConfiguration">
            <type xmi:type="uml:DataType" href="Vnf.uml#_ZQtesOzlEei7-e9MrPJW7Q"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_y4YccOzlEei7-e9MrPJW7Q"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_y4fxMOzlEei7-e9MrPJW7Q" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_HKq0cOznEei7-e9MrPJW7Q" name="vnfmInfo">
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_WCEfIOQ3Eei2Ub3VuxG4ag" name="OnboardingVnfPackage">
          <generalization xmi:type="uml:Generalization" xmi:id="_PshAYOQ5Eei2Ub3VuxG4ag" general="_TpqdUOQ3Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_U37_kOQ9Eei2Ub3VuxG4ag" name="PnfInstance">
          <generalization xmi:type="uml:Generalization" xmi:id="_a30XAORAEei2Ub3VuxG4ag" general="_2_GuoOQ8Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_SRIVYOQ9Eei2Ub3VuxG4ag" name="VnfInstance">
          <generalization xmi:type="uml:Generalization" xmi:id="_daVXEORAEei2Ub3VuxG4ag" general="_2_GuoOQ8Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_CYoX4OzeEei7-e9MrPJW7Q" name="OnboardingVLDescriptor"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_30qC0OzdEei7-e9MrPJW7Q" name="OnboardingCpDescriptor"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_nepCAPGQEei7s9ZrY0W7MQ" name="PlatformNfDescriptor" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_HGkRgPoiEeiXda0FrsRiEw" annotatedElement="_nepCAPGQEei7s9ZrY0W7MQ">
            <body>PlatformNfDescriptor is an abstract class that extends PlatformDescriptor  to represent classes of design time objects that represent internal, or platform network function descriptors.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_B7FroPGREei7s9ZrY0W7MQ" general="_w3xrYOQ5Eei2Ub3VuxG4ag"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ONctwfGUEei7s9ZrY0W7MQ" name="platformcpdescriptor" type="_lZpZgPGSEei7s9ZrY0W7MQ" aggregation="composite" association="_ONbfoPGUEei7s9ZrY0W7MQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ONdU0PGUEei7s9ZrY0W7MQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ONdU0fGUEei7s9ZrY0W7MQ" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_XHCkoPGUEei7s9ZrY0W7MQ" name="platformvldescriptor" type="_onMTkPGSEei7s9ZrY0W7MQ" aggregation="composite" association="_XHBWgPGUEei7s9ZrY0W7MQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XHCkovGUEei7s9ZrY0W7MQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XHDLsPGUEei7s9ZrY0W7MQ" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_onMTkPGSEei7s9ZrY0W7MQ" name="PlatformVLDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_isi-UPM4EeiKa_-nH9J3Lg" general="_w3xrYOQ5Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_45bWUDzEEeiWMf5FLWfdLA" name="VirtualLinkProfile">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45bWUTzEEeiWMf5FLWfdLA" annotatedElement="_45bWUDzEEeiWMf5FLWfdLA">
            <body>The VirtualLinkProfile class specifies a profile for instantiating VLs of a particular NS DF according to a specific VLD and VL DF. </body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWUjzEEeiWMf5FLWfdLA" name="virtualLinkProfileId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_45bWUzzEEeiWMf5FLWfdLA" annotatedElement="_45bWUjzEEeiWMf5FLWfdLA">
              <body>Uniquely identifies this VirtualLinkProfile class.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWVDzEEeiWMf5FLWfdLA" name="flavourId">
            <ownedComment xmi:type="uml:Comment" xmi:id="_45bWVTzEEeiWMf5FLWfdLA" annotatedElement="_45bWVDzEEeiWMf5FLWfdLA">
              <body>Identifies a flavour within the VLD.</body>
            </ownedComment>
            <type xmi:type="uml:DataType" href="Ns.uml#_kEZBoTzEEeiWMf5FLWfdLA"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWVjzEEeiWMf5FLWfdLA" name="localAffinityOrAntiAffinityRule ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_45bWVzzEEeiWMf5FLWfdLA" annotatedElement="_45bWVjzEEeiWMf5FLWfdLA">
              <body>Specifies affinity and anti-affinity rules applicable between VLs instantiated from the referenced VLD. </body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45bWWDzEEeiWMf5FLWfdLA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45bWWTzEEeiWMf5FLWfdLA" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWWjzEEeiWMf5FLWfdLA" name="affinityOrAntiAffinityGroupId" type="_0AbUYDnBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_45bWWzzEEeiWMf5FLWfdLA" annotatedElement="_45bWWjzEEeiWMf5FLWfdLA">
              <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.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45bWXDzEEeiWMf5FLWfdLA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45bWXTzEEeiWMf5FLWfdLA" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWXjzEEeiWMf5FLWfdLA" name="maxBitrateRequirements">
            <ownedComment xmi:type="uml:Comment" xmi:id="_45bWXzzEEeiWMf5FLWfdLA" annotatedElement="_45bWXjzEEeiWMf5FLWfdLA">
              <body>Specifies the maximum bitrate requirements for a VL instantiated according to this profile. &#xD;
NOTE: 	These attributes are used to control scaling boundaries.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_45bWYDzEEeiWMf5FLWfdLA" name="minBitrateRequirements">
            <ownedComment xmi:type="uml:Comment" xmi:id="_45bWYTzEEeiWMf5FLWfdLA" annotatedElement="_45bWYDzEEeiWMf5FLWfdLA">
              <body>Specifies the minimum bitrate requirements for a VL instantiated according to this profile.&#xD;
NOTE: 	These attributes are used to control scaling boundaries.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_PAQXwj27Eeiu6I5JfRTxxQ" name="_nsVirtualLinkDesc">
            <ownedComment xmi:type="uml:Comment" xmi:id="_pFTMgEPmEeiVGPeZpaYNtQ" annotatedElement="_PAQXwj27Eeiu6I5JfRTxxQ">
              <body>Uniquely references a VLD.</body>
            </ownedComment>
            <type xmi:type="uml:Class" href="Ns.uml#_13WFYDzEEeiWMf5FLWfdLA"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PASM8D27Eeiu6I5JfRTxxQ" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_PASM8T27Eeiu6I5JfRTxxQ" value="1"/>
            <association xmi:type="uml:Association" href="Service.uml#_PAOikD27Eeiu6I5JfRTxxQ"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_kEZB9jzEEeiWMf5FLWfdLA" name="CpdPool">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZB9zzEEeiWMf5FLWfdLA" annotatedElement="_kEZB9jzEEeiWMf5FLWfdLA">
            <body>The CpdPool class specifies a pool of descriptors of connection points and service access points.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZB-DzEEeiWMf5FLWfdLA" name="cpdPoolId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_kEZB-TzEEeiWMf5FLWfdLA" annotatedElement="_kEZB-DzEEeiWMf5FLWfdLA">
              <body>Identifier of this CpdPool class. It identifies a pool of descriptors of connection points and NS SAPs.</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_jJ_NcDxkEemSdYSKacDoqQ" name="LinkDesc">
          <generalization xmi:type="uml:Generalization" xmi:id="_0sPjQDxkEemSdYSKacDoqQ">
            <general xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          </generalization>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_QVhWcDOHEei5Af8DcjrhIQ" name="Associations">
        <packagedElement xmi:type="uml:Association" xmi:id="_vV0jwES0EeiVGPeZpaYNtQ" name="VirtualLinkHasLinkPort" memberEnd="_vV1x4kS0EeiVGPeZpaYNtQ _vWZykES0EeiVGPeZpaYNtQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_vV1x4ES0EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_vV1x4US0EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_vWZykES0EeiVGPeZpaYNtQ" name="_vl" type="_Tw5PIES0EeiVGPeZpaYNtQ" association="_vV0jwES0EeiVGPeZpaYNtQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_H8vPIES1EeiVGPeZpaYNtQ" name="LinkPortTerminatesOnCp" memberEnd="_H85nMkS1EeiVGPeZpaYNtQ _H9AU4US1EeiVGPeZpaYNtQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_H85nMES1EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_H85nMUS1EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_H9AU4US1EeiVGPeZpaYNtQ" name="_linkPort" type="_il0cAES0EeiVGPeZpaYNtQ" association="_H8vPIES1EeiVGPeZpaYNtQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SYdnIES1EeiVGPeZpaYNtQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SYrpkES1EeiVGPeZpaYNtQ" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_jOU9sOQ6Eei2Ub3VuxG4ag" name="OnboardingPnfPackageHasOnboardingPnfDescriptor" memberEnd="_jOYBAOQ6Eei2Ub3VuxG4ag _jOadQOQ6Eei2Ub3VuxG4ag">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_jOWy4OQ6Eei2Ub3VuxG4ag" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_jOXZ8OQ6Eei2Ub3VuxG4ag" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_jOYBAOQ6Eei2Ub3VuxG4ag" name="onboardingpnfdescriptor" type="_ucHMIOQ3Eei2Ub3VuxG4ag" aggregation="composite" association="_jOU9sOQ6Eei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4kIBIOQ7Eei2Ub3VuxG4ag" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4kqzsOQ7Eei2Ub3VuxG4ag" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_jOadQOQ6Eei2Ub3VuxG4ag" name="onboardingpnfpackage" type="_ZLtJkOQ3Eei2Ub3VuxG4ag" association="_jOU9sOQ6Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_mDnv0OQ6Eei2Ub3VuxG4ag" name="OnboardingVnfPackageHasOnboardingVnfDescriptor" memberEnd="_mDoW4uQ6Eei2Ub3VuxG4ag _mDo98OQ6Eei2Ub3VuxG4ag">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_mDoW4OQ6Eei2Ub3VuxG4ag" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_mDoW4eQ6Eei2Ub3VuxG4ag" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_mDoW4uQ6Eei2Ub3VuxG4ag" name="onboardingpnfpackage" type="_fSQ4IOQ3Eei2Ub3VuxG4ag" aggregation="composite" association="_mDnv0OQ6Eei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_mQstEOQ7Eei2Ub3VuxG4ag" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_mRDSYOQ7Eei2Ub3VuxG4ag" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_mDo98OQ6Eei2Ub3VuxG4ag" name="onboardingvnfpackage" type="_WCEfIOQ3Eei2Ub3VuxG4ag" association="_mDnv0OQ6Eei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_io5f8OQ7Eei2Ub3VuxG4ag" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_iptYQOQ7Eei2Ub3VuxG4ag" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_1r89UOQ_Eei2Ub3VuxG4ag" name="PnfInstanceBasedOnOnboardingPnfDescriptor" memberEnd="_1r9kYuQ_Eei2Ub3VuxG4ag _1r-LcOQ_Eei2Ub3VuxG4ag">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_1r9kYOQ_Eei2Ub3VuxG4ag" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_1r9kYeQ_Eei2Ub3VuxG4ag" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_1r9kYuQ_Eei2Ub3VuxG4ag" name="internalpnfmodel" type="_9jP4cOQ5Eei2Ub3VuxG4ag" aggregation="shared" association="_1r89UOQ_Eei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OnhqEORAEei2Ub3VuxG4ag"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OnkGUORAEei2Ub3VuxG4ag" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_1r-LcOQ_Eei2Ub3VuxG4ag" name="onboardingpnfdescriptor" type="_ucHMIOQ3Eei2Ub3VuxG4ag" association="_1r89UOQ_Eei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_0-FVQORAEei2Ub3VuxG4ag" name="PnfInstanceCreatedFromInternalPnfModel" memberEnd="_0-F8UuRAEei2Ub3VuxG4ag _0-GjYORAEei2Ub3VuxG4ag">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_0-F8UORAEei2Ub3VuxG4ag" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_0-F8UeRAEei2Ub3VuxG4ag" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_0-F8UuRAEei2Ub3VuxG4ag" name="pnfinstance" type="_U37_kOQ9Eei2Ub3VuxG4ag" aggregation="composite" association="_0-FVQORAEei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_JMcsAORBEei2Ub3VuxG4ag"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_JNDI8ORBEei2Ub3VuxG4ag" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_0-GjYORAEei2Ub3VuxG4ag" name="internalpnfmodel" type="_9jP4cOQ5Eei2Ub3VuxG4ag" association="_0-FVQORAEei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_Mvk0gORBEei2Ub3VuxG4ag" name="VnfInstanceCreatedFromInternalVnfModel" memberEnd="_MvmCoORBEei2Ub3VuxG4ag _MvnQwORBEei2Ub3VuxG4ag">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_MvlbkORBEei2Ub3VuxG4ag" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_MvlbkeRBEei2Ub3VuxG4ag" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_MvmCoORBEei2Ub3VuxG4ag" name="vnfinstance" type="_SRIVYOQ9Eei2Ub3VuxG4ag" aggregation="composite" association="_Mvk0gORBEei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bTr-MORBEei2Ub3VuxG4ag"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bT6AoORBEei2Ub3VuxG4ag" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_MvnQwORBEei2Ub3VuxG4ag" name="internalvnfmodel" type="_4QQU0OQ5Eei2Ub3VuxG4ag" association="_Mvk0gORBEei2Ub3VuxG4ag"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_eezhQOQ_Eei2Ub3VuxG4ag" name="InternalVnfModelBasedOnOnboardingVnfDescriptor" memberEnd="_ee0vYeQ_Eei2Ub3VuxG4ag _ee5n4OQ_Eei2Ub3VuxG4ag">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ee0IUOQ_Eei2Ub3VuxG4ag" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ee0vYOQ_Eei2Ub3VuxG4ag" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ee0vYeQ_Eei2Ub3VuxG4ag" name="internalvnfmodel" type="_4QQU0OQ5Eei2Ub3VuxG4ag" aggregation="shared" association="_eezhQOQ_Eei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vkX7EOQ_Eei2Ub3VuxG4ag"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vk3qUOQ_Eei2Ub3VuxG4ag" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ee5n4OQ_Eei2Ub3VuxG4ag" name="onboardingvnfdescriptor" type="_fSQ4IOQ3Eei2Ub3VuxG4ag" association="_eezhQOQ_Eei2Ub3VuxG4ag">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="__p334PS6EeiGPpKdxajt7g"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__p9-gPS6EeiGPpKdxajt7g" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_jSVY0OzeEei7-e9MrPJW7Q" memberEnd="_jSYcIOzeEei7-e9MrPJW7Q _jSZqQOzeEei7-e9MrPJW7Q">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_jSXOAOzeEei7-e9MrPJW7Q" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_jSXOAezeEei7-e9MrPJW7Q" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_jSZqQOzeEei7-e9MrPJW7Q" name="onboardingnfdescriptor" type="_cbT5IOQ3Eei2Ub3VuxG4ag" association="_jSVY0OzeEei7-e9MrPJW7Q"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_qyfXkOzeEei7-e9MrPJW7Q" memberEnd="_qyf-ouzeEei7-e9MrPJW7Q _qyglsuzeEei7-e9MrPJW7Q">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_qyf-oOzeEei7-e9MrPJW7Q" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_qyf-oezeEei7-e9MrPJW7Q" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_qyglsuzeEei7-e9MrPJW7Q" name="onboardingnfdescriptor" type="_cbT5IOQ3Eei2Ub3VuxG4ag" association="_qyfXkOzeEei7-e9MrPJW7Q"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_E7oZkPGTEei7s9ZrY0W7MQ" memberEnd="_E7q10PGTEei7s9ZrY0W7MQ _E7t5IPGTEei7s9ZrY0W7MQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_E7qOwPGTEei7s9ZrY0W7MQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_E7qOwfGTEei7s9ZrY0W7MQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_E7q10PGTEei7s9ZrY0W7MQ" name="onboardingnfdescriptor" type="_cbT5IOQ3Eei2Ub3VuxG4ag" association="_E7oZkPGTEei7s9ZrY0W7MQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KhGNQPGTEei7s9ZrY0W7MQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KhWE4PGTEei7s9ZrY0W7MQ" value="1"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_E7t5IPGTEei7s9ZrY0W7MQ" name="platformnfdescriptor" type="_nepCAPGQEei7s9ZrY0W7MQ" association="_E7oZkPGTEei7s9ZrY0W7MQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_NZ9QwPGTEei7s9ZrY0W7MQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_NaElgPGTEei7s9ZrY0W7MQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_KcXigPM5EeiKa_-nH9J3Lg" memberEnd="_KcYJkvM5EeiKa_-nH9J3Lg _KcYwoPM5EeiKa_-nH9J3Lg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_KcYJkPM5EeiKa_-nH9J3Lg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_KcYJkfM5EeiKa_-nH9J3Lg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_KcYJkvM5EeiKa_-nH9J3Lg" name="onboardingvldescriptor" type="_CYoX4OzeEei7-e9MrPJW7Q" association="_KcXigPM5EeiKa_-nH9J3Lg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W2-hsPM8EeiKa_-nH9J3Lg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W3BlAPM8EeiKa_-nH9J3Lg" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_KcYwoPM5EeiKa_-nH9J3Lg" name="onboardingcpdescriptor" type="_30qC0OzdEei7-e9MrPJW7Q" association="_KcXigPM5EeiKa_-nH9J3Lg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YTj0cPM8EeiKa_-nH9J3Lg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YToF4PM8EeiKa_-nH9J3Lg" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_FXR4APM5EeiKa_-nH9J3Lg" memberEnd="_FXUUQPM5EeiKa_-nH9J3Lg _FXXXkPM5EeiKa_-nH9J3Lg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_FXTtMPM5EeiKa_-nH9J3Lg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_FXTtMfM5EeiKa_-nH9J3Lg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_FXUUQPM5EeiKa_-nH9J3Lg" name="platformcpdescriptor" type="_lZpZgPGSEei7s9ZrY0W7MQ" association="_FXR4APM5EeiKa_-nH9J3Lg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fQvpAPM8EeiKa_-nH9J3Lg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fQxeMPM8EeiKa_-nH9J3Lg" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_FXXXkPM5EeiKa_-nH9J3Lg" name="platformvldescriptor" type="_onMTkPGSEei7s9ZrY0W7MQ" association="_FXR4APM5EeiKa_-nH9J3Lg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_f5cnwPM8EeiKa_-nH9J3Lg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_f5ec8PM8EeiKa_-nH9J3Lg" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_ONbfoPGUEei7s9ZrY0W7MQ" memberEnd="_ONctwfGUEei7s9ZrY0W7MQ _ONdU0vGUEei7s9ZrY0W7MQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ONcGsPGUEei7s9ZrY0W7MQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ONctwPGUEei7s9ZrY0W7MQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ONdU0vGUEei7s9ZrY0W7MQ" name="platformnfdescriptor" type="_nepCAPGQEei7s9ZrY0W7MQ" association="_ONbfoPGUEei7s9ZrY0W7MQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_plKv8PJcEeibsZxxyZUKdQ" memberEnd="_plL-EvJcEeibsZxxyZUKdQ _plMlIvJcEeibsZxxyZUKdQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_plL-EPJcEeibsZxxyZUKdQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_plL-EfJcEeibsZxxyZUKdQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_plMlIvJcEeibsZxxyZUKdQ" name="platformvnfdescriptor" type="_4QQU0OQ5Eei2Ub3VuxG4ag" association="_plKv8PJcEeibsZxxyZUKdQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_XHBWgPGUEei7s9ZrY0W7MQ" memberEnd="_XHCkoPGUEei7s9ZrY0W7MQ _XHDLsfGUEei7s9ZrY0W7MQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_XHB9kPGUEei7s9ZrY0W7MQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_XHB9kfGUEei7s9ZrY0W7MQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_XHDLsfGUEei7s9ZrY0W7MQ" name="platformnfdescriptor" type="_nepCAPGQEei7s9ZrY0W7MQ" association="_XHBWgPGUEei7s9ZrY0W7MQ"/>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_YBnZgN3rEei-jeeHUjfpLA" name="NetworkTypeDefinitions">
        <packagedElement xmi:type="uml:DataType" xmi:id="_2aIggDa9EeivvI-m1BaAbA" name="AddressData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Wv89wGNfEeio9amveq0yWQ" annotatedElement="_2aIggDa9EeivvI-m1BaAbA">
            <body>The AddressData information element supports providing information about the addressing scheme and parameters applicable to a CP. </body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_A8dPwDa-EeivvI-m1BaAbA" name="addressType" type="_MevNkJddEei-sOl6ywWHlg">
            <ownedComment xmi:type="uml:Comment" xmi:id="_dD2YQDa-EeivvI-m1BaAbA" annotatedElement="_A8dPwDa-EeivvI-m1BaAbA">
              <body>Describes the type of the address to be assigned to the CP instantiated from the parent CPD. The content type shall be aligned with the address type supported by the layerProtocol attribute of the parent CPD.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_BxokQDa-EeivvI-m1BaAbA" name="l2AddressData" type="_X9TdUDdPEeiIfPeSAqyGdQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_O8qjQDdPEeiIfPeSAqyGdQ" annotatedElement="_BxokQDa-EeivvI-m1BaAbA">
              <body>Provides the information on the MAC addresses to be assigned to the CP(s) instantiated from the parent CPD.&#xD;
Shall be present when the addressType is MAC address.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_L3I8wDdPEeiIfPeSAqyGdQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_L3NOMDdPEeiIfPeSAqyGdQ" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_CUeLkDa-EeivvI-m1BaAbA" name="l3AddressData" type="_4oResDdPEeiIfPeSAqyGdQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_UN-r4DdPEeiIfPeSAqyGdQ" annotatedElement="_CUeLkDa-EeivvI-m1BaAbA">
              <body>Provides the information on the IP addresses to be assigned to the CP instantiated from the parent CPD.&#xD;
Shall be present when the addressType is IP address.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SKejEDdPEeiIfPeSAqyGdQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SKiNcDdPEeiIfPeSAqyGdQ" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_ImxsgDeBEeiIfPeSAqyGdQ" name="ConnectivityType">
          <ownedComment xmi:type="uml:Comment" xmi:id="_8qt_MK0pEeiQr7XQ2okIrA" annotatedElement="_ImxsgDeBEeiIfPeSAqyGdQ">
            <body>The ConnectivityType datatype specifies the protocol exposed by a VL and the flow pattern supported by the VL.The top layer protocol of the VL protocol stack shall always be provided. The lower layer protocols may be included when there are specific requirements on these layers.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_N61nIDeBEeiIfPeSAqyGdQ" name="layerProtocol" type="_tFQGcDnLEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_XlK-cDeBEeiIfPeSAqyGdQ" annotatedElement="_N61nIDeBEeiIfPeSAqyGdQ">
              <body>Identifies the protocols to which this VL gives access (Ethernet, MPLS, ODU2, IPV4, IPV6, Pseudo-Wire).&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_O2y5EDeBEeiIfPeSAqyGdQ" name="flowPattern">
            <ownedComment xmi:type="uml:Comment" xmi:id="_fUBggDeBEeiIfPeSAqyGdQ" annotatedElement="_O2y5EDeBEeiIfPeSAqyGdQ">
              <body>Identifies the flow pattern of the connectivity (Line, Tree, Mesh).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ca4JIDeBEeiIfPeSAqyGdQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ca7zgDeBEeiIfPeSAqyGdQ" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_PjIasDa9EeivvI-m1BaAbA" name="CpProtocolData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kSumQGNfEeio9amveq0yWQ" annotatedElement="_PjIasDa9EeivvI-m1BaAbA">
            <body>A CpProtocolData information element describes and associates the protocol layer that a CP uses together with other protocol and connection point information.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_oa2iMDa9EeivvI-m1BaAbA" name="associatedLayerProtocol" type="_tFQGcDnLEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_zWCdYDa9EeivvI-m1BaAbA" annotatedElement="_oa2iMDa9EeivvI-m1BaAbA">
              <body>One of the values of the attribute layerProtocol of the Cpd IE.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_pMKqYDa9EeivvI-m1BaAbA" name="addressData" type="_2aIggDa9EeivvI-m1BaAbA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_06IGUDa9EeivvI-m1BaAbA" annotatedElement="_pMKqYDa9EeivvI-m1BaAbA">
              <body>Provides information on the address to be assigned to the CP(s) instantiated from the CPD.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xOJj0Da9EeivvI-m1BaAbA" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_xORfoDa9EeivvI-m1BaAbA" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_X9TdUDdPEeiIfPeSAqyGdQ" name="L2AddressData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4Ik0gDVDEemHv-d7dSGofA" annotatedElement="_X9TdUDdPEeiIfPeSAqyGdQ">
            <body>The L2AddressData information element supports providing information about Layer 2 level addressing applicable to a CP.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ifaxMDdPEeiIfPeSAqyGdQ" name="macAddressAssignment">
            <ownedComment xmi:type="uml:Comment" xmi:id="_oHJ1wDdPEeiIfPeSAqyGdQ" annotatedElement="_ifaxMDdPEeiIfPeSAqyGdQ">
              <body>Specify if the MAC address assignment is the responsibility of management and orchestration function or not.&#xD;
&#xD;
If it is set to True, it is the management and orchestration function responsibility.&#xD;
&#xD;
If it is set to False, it will be provided by an external entity, e.g. OSS/BSS. &#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_4oResDdPEeiIfPeSAqyGdQ" name="L3AddressData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_wIQCwGNfEeio9amveq0yWQ" annotatedElement="_4oResDdPEeiIfPeSAqyGdQ">
            <body>The L3AddressData information element supports providing information about Layer 3 level addressing scheme and parameters applicable to a CP.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_-b8GcDdPEeiIfPeSAqyGdQ" name="ipAddressAssignment">
            <ownedComment xmi:type="uml:Comment" xmi:id="_MJgCoDdQEeiIfPeSAqyGdQ" annotatedElement="_-b8GcDdPEeiIfPeSAqyGdQ">
              <body>Specify if the address assignment is the responsibility of management and orchestration function or not.&#xD;
&#xD;
If it is set to True, it is the management and orchestration function responsibility.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="__BqCoDdPEeiIfPeSAqyGdQ" name="floatingIpActivated">
            <ownedComment xmi:type="uml:Comment" xmi:id="_QCBzYDdQEeiIfPeSAqyGdQ" annotatedElement="__BqCoDdPEeiIfPeSAqyGdQ">
              <body>Specify if the floating IP scheme is activated on the CP or not.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="__o0JQDdPEeiIfPeSAqyGdQ" name="ipAddressType" type="_TTf2EB89EemJTaeYhZuDRA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_WilWUDdQEeiIfPeSAqyGdQ" annotatedElement="__o0JQDdPEeiIfPeSAqyGdQ">
              <body>Define address type.&#xD;
&#xD;
NOTE: The address type should be aligned with the address type supported by the layerProtocol attribute of the parent Cpd.&#xD;
</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_UUz3MDdQEeiIfPeSAqyGdQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UU4vsDdQEeiIfPeSAqyGdQ" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Ag8rIDdQEeiIfPeSAqyGdQ" name="numberOfIpAddress">
            <ownedComment xmi:type="uml:Comment" xmi:id="_cKk5kDdQEeiIfPeSAqyGdQ" annotatedElement="_Ag8rIDdQEeiIfPeSAqyGdQ">
              <body>Minimum number of IP addresses to be assigned based on this L3AddressData information element.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_aPbbgDdQEeiIfPeSAqyGdQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_aPfF4DdQEeiIfPeSAqyGdQ" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_tFQGcDnLEeiWMf5FLWfdLA" name="LayerProtocol">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zLXwIDnLEeiWMf5FLWfdLA" annotatedElement="_tFQGcDnLEeiWMf5FLWfdLA">
            <body>Identifies the protocol to which this VL gives access.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_0VFxQDnLEeiWMf5FLWfdLA" name="ETHERNET"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_2M_uEDnLEeiWMf5FLWfdLA" name="MPLS"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_46OwYDnLEeiWMf5FLWfdLA" name="ODU2"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_6gEFwDnLEeiWMf5FLWfdLA" name="IPV4"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_95b1UDnLEeiWMf5FLWfdLA" name="IPV6"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="__bv8oDnLEeiWMf5FLWfdLA" name="PSEUDOWIRE"/>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_LsX6UDgXEeiOYfGHew0BGg" name="LinkBitrateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TNBy4DgYEeiOYfGHew0BGg" annotatedElement="_LsX6UDgXEeiOYfGHew0BGg">
            <body>The LinkBitrateRequirements information element describes the requirements in terms of bitrate for a VL.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_TsnHUDgXEeiOYfGHew0BGg" name="root" type="_p3EKoDm0EeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_m5ImkDgXEeiOYfGHew0BGg" annotatedElement="_TsnHUDgXEeiOYfGHew0BGg">
              <body>Throughput requirement of the link (e.g. bitrate of E-Line, root bitrate of E-Tree, aggregate capacity of E-LAN).&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_W5c2wDgXEeiOYfGHew0BGg" name="leaf" type="_p3EKoDm0EeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_MagWMDgYEeiOYfGHew0BGg" annotatedElement="_W5c2wDgXEeiOYfGHew0BGg">
              <body>Throughput requirement of leaf connections to the link when applicable to the connectivity type (e.g. for E-Tree and E?LAN branches).&#xD;
&#xD;
NOTE: The present document does not specify the means to declare different bitrate requirements for leaf connections (e.g. E-LAN leaves).&#xD;
</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GlJsYDgYEeiOYfGHew0BGg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GlNWwDgYEeiOYfGHew0BGg" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_7hn1IDd1EeiIfPeSAqyGdQ" name="LocalAffinityOrAntiAffinityRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_20J6EGNfEeio9amveq0yWQ" annotatedElement="_7hn1IDd1EeiIfPeSAqyGdQ">
            <body>The LocalAffinityOrAntiAffinityRule describes the affinity or anti-affinity rule applicable between the virtualization containers to be created based on a particular VDU, or between internal VLs to be created based on a particular VnfVirtualLinkDesc. &#xD;
Per VNF, the affinity/anti-affinity rules defined using this information element, using the AffinityOrAntiAffinityGroup information element, and using the placement constraints in the GrantLifecycleOperation as defined in ETSI GS NFV IFA 007 [i.3] should be conflict-free. In case of conflicts, the placement constraints in the GrantLifecycleOperation shall take precedence. &#xD;
</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_EjJgADd2EeiIfPeSAqyGdQ" name="type" type="_tMoywDnJEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_uoCBoDd3EeiIfPeSAqyGdQ" annotatedElement="_EjJgADd2EeiIfPeSAqyGdQ">
              <body>Specifies whether the rule is an affinity rule or an anti-affinity rule.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_F5b9gDd2EeiIfPeSAqyGdQ" name="scope" type="_B3kJsDnKEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_yop-cDd3EeiIfPeSAqyGdQ" annotatedElement="_F5b9gDd2EeiIfPeSAqyGdQ">
              <body>Specifies the scope of the rule.</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_zxlckB8-EemJTaeYhZuDRA" name="L2ProtocolData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TC2ncB88EemJTaeYhZuDRA">
            <body>The L2ProtocolData information element describes the L2 protocol related data for a virtual link.</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_MiWAcB8_EemJTaeYhZuDRA" annotatedElement="_zxlckB8-EemJTaeYhZuDRA">
            <body>The L2ProtocolData information element describes the L2 protocol related data for a virtual link.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_PJJAYB87EemJTaeYhZuDRA" name="name">
            <ownedComment xmi:type="uml:Comment" xmi:id="_cXsFUB87EemJTaeYhZuDRA" annotatedElement="_PJJAYB87EemJTaeYhZuDRA">
              <body>Network name associated with this L2&#xD;
protocol.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YlMEEB87EemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YlYRUB87EemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_PuRtwB87EemJTaeYhZuDRA" name="networkType" type="_6TxekB87EemJTaeYhZuDRA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_jdtFwB87EemJTaeYhZuDRA" annotatedElement="_PuRtwB87EemJTaeYhZuDRA">
              <body>Specifies the network type for this L2&#xD;
protocol. Possible values: FLAT, VLAN,&#xD;
VXLAN, GRE.&#xD;
&#xD;
Note:  If this attribute is included in the VNFD, the attribute value shall be provided at run-time, unless a default value&#xD;
is provided at design time in the VNFD. If a default value is provided at design-time, this value may be&#xD;
overridden at run-time.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_eu2J8B87EemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_eu-s0B87EemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Qe_ZAB87EemJTaeYhZuDRA" name="vlanTransparent">
            <ownedComment xmi:type="uml:Comment" xmi:id="_s1sv4B87EemJTaeYhZuDRA" annotatedElement="_Qe_ZAB87EemJTaeYhZuDRA">
              <body>Specifies whether to support VLAN&#xD;
transparency for this L2 protocol or not.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nWswkB87EemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nWxpEB87EemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ej13AB8_EemJTaeYhZuDRA" name="mtu">
            <ownedComment xmi:type="uml:Comment" xmi:id="_kENvUB8_EemJTaeYhZuDRA" annotatedElement="_ej13AB8_EemJTaeYhZuDRA">
              <body>Specifies the maximum transmission unit&#xD;
(MTU) value for this L2 protocol.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_jke4UCCdEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_jkp3cCCdEemw1L3J4dNy4w" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_EXheUCCjEemw1L3J4dNy4w" name="segmentationId">
            <ownedComment xmi:type="uml:Comment" xmi:id="_PkQcgCCjEemw1L3J4dNy4w" annotatedElement="_EXheUCCjEemw1L3J4dNy4w">
              <body>Network segment ID.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="__z33gCCjEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__0C2oCCjEemw1L3J4dNy4w" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_FUxJsCCjEemw1L3J4dNy4w" name="physicalNetwork">
            <ownedComment xmi:type="uml:Comment" xmi:id="_oBdLMCCjEemw1L3J4dNy4w" annotatedElement="_FUxJsCCjEemw1L3J4dNy4w">
              <body>The connected physical network of network type (VLAN or VxLAN) .</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9pcAQCCjEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9phf0CCjEemw1L3J4dNy4w" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_GEsKwCCjEemw1L3J4dNy4w" name="routerExternal">
            <ownedComment xmi:type="uml:Comment" xmi:id="_4emTECCjEemw1L3J4dNy4w" annotatedElement="_GEsKwCCjEemw1L3J4dNy4w">
              <body>Specify if a vrouter comes from an external network.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_74DiMCCjEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_74KP4CCjEemw1L3J4dNy4w" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_6TxekB87EemJTaeYhZuDRA" name="NetworkType">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Mss9sB88EemJTaeYhZuDRA" annotatedElement="_6TxekB87EemJTaeYhZuDRA">
            <body>Specifies the network type for this L2 protocol. </body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_-HirIB87EemJTaeYhZuDRA" name="FLAT"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="__jymsB87EemJTaeYhZuDRA" name="VLAN"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_BypD4B88EemJTaeYhZuDRA" name="VXLAN"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_DSshYB88EemJTaeYhZuDRA" name="GRE"/>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_4DfhMB8_EemJTaeYhZuDRA" name="L3ProtocolData">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Wbv14B88EemJTaeYhZuDRA">
            <body>The L3ProtocolData information element describes the L3 protocol related data for a virtual link.</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_RnrJQB9EEemJTaeYhZuDRA" annotatedElement="_4DfhMB8_EemJTaeYhZuDRA">
            <body>The L3ProtocolData information element describes the L3 protocol related data for a virtual link.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Z5XzUB88EemJTaeYhZuDRA" name="name">
            <ownedComment xmi:type="uml:Comment" xmi:id="_1DOVgB88EemJTaeYhZuDRA" annotatedElement="_Z5XzUB88EemJTaeYhZuDRA">
              <body>Network name associated with this L3&#xD;
protocol.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kPLUEB89EemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kPQzoB89EemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_XWjUcB9AEemJTaeYhZuDRA" name="ipVersion" type="_TTf2EB89EemJTaeYhZuDRA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_yKAI0B9AEemJTaeYhZuDRA" annotatedElement="_XWjUcB9AEemJTaeYhZuDRA">
              <body>Specifies IP version of this L3 protocol.&#xD;
Value:&#xD;
• IPV4.&#xD;
• IPV6.&#xD;
&#xD;
NOTE : The value of the ipVersion attribute shall be consistent with the value of the layerProtocol attribute of the&#xD;
ConnectivityType IE .</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_YJLEMB9AEemJTaeYhZuDRA" name="cidr">
            <ownedComment xmi:type="uml:Comment" xmi:id="_3ORT8B9AEemJTaeYhZuDRA" annotatedElement="_YJLEMB9AEemJTaeYhZuDRA">
              <body>Specifies the CIDR (Classless Inter-&#xD;
Domain Routing) of this L3 protocol.&#xD;
&#xD;
NOTE : If this attribute is included in the VNFD, the attribute value shall be provided at run-time, unless a default value&#xD;
is provided at design time in the VNFD. If a default value is provided at design-time, this value may be&#xD;
overridden at run-time.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Y2KGAB9AEemJTaeYhZuDRA" name="ipAllocationPools" type="_vxJ9ADafEei23_xWdimG9w">
            <ownedComment xmi:type="uml:Comment" xmi:id="_5IzG8B9AEemJTaeYhZuDRA" annotatedElement="_Y2KGAB9AEemJTaeYhZuDRA">
              <body>Specifies the allocation pools&#xD;
with start and end IP addresses for this L3&#xD;
protocol.&#xD;
&#xD;
NOTE : If this attribute is included in the VNFD, the attribute value shall be provided at run-time, unless a default value&#xD;
is provided at design time in the VNFD. If a default value is provided at design-time, this value may be&#xD;
overridden at run-time.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MfufYB9BEemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Mf7TsB9BEemJTaeYhZuDRA" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ZdOtEB9AEemJTaeYhZuDRA" name="gatewayIp">
            <ownedComment xmi:type="uml:Comment" xmi:id="_7PtwIB9AEemJTaeYhZuDRA" annotatedElement="_ZdOtEB9AEemJTaeYhZuDRA">
              <body>Specifies the gateway IP address for this&#xD;
L3 protocol.&#xD;
&#xD;
NOTE : If this attribute is included in the VNFD, the attribute value shall be provided at run-time, unless a default value&#xD;
is provided at design time in the VNFD. If a default value is provided at design-time, this value may be&#xD;
overridden at run-time.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OiVQUB9BEemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Oiav4B9BEemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_aMwFgB9AEemJTaeYhZuDRA" name="dhcpEnabled">
            <ownedComment xmi:type="uml:Comment" xmi:id="_9SCNMB9AEemJTaeYhZuDRA" annotatedElement="_aMwFgB9AEemJTaeYhZuDRA">
              <body>Indicates whether DHCP (Dynamic Host&#xD;
Configuration Protocol) is enabled or&#xD;
disabled for this L3 protocol.&#xD;
&#xD;
NOTE : If this attribute is included in the VNFD, the attribute value shall be provided at run-time, unless a default value&#xD;
is provided at design time in the VNFD. If a default value is provided at design-time, this value may be&#xD;
overridden at run-time.</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_ZTHmICCxEemw1L3J4dNy4w" annotatedElement="_aMwFgB9AEemJTaeYhZuDRA">
              <body>Indicating whether DHCP is enabled. Default is &quot;FALSE&quot; if not specified otherwise.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_P_zT4B9BEemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_P_2XMB9BEemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_a3GDAB9AEemJTaeYhZuDRA" name="ipv6AddressMode" type="_I79lEB8-EemJTaeYhZuDRA">
            <ownedComment xmi:type="uml:Comment" xmi:id="__YMBYB9AEemJTaeYhZuDRA" annotatedElement="_a3GDAB9AEemJTaeYhZuDRA">
              <body>Specifies IPv6 address mode. Possible&#xD;
values:&#xD;
• SLAAC.&#xD;
• DHCPV6-STATEFUL.&#xD;
• DHCPV6-STATELESS.&#xD;
May be present when the value of the&#xD;
ipVersion attribute is &quot;IPV6&quot; and shall be&#xD;
absent otherwise.&#xD;
&#xD;
NOTE : If this attribute is included in the VNFD, the attribute value shall be provided at run-time, unless a default value&#xD;
is provided at design time in the VNFD. If a default value is provided at design-time, this value may be&#xD;
overridden at run-time.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Rd8s4B9BEemJTaeYhZuDRA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ReA-UB9BEemJTaeYhZuDRA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_ZrpFwCCvEemw1L3J4dNy4w" name="ipv6RaMode" type="_I79lEB8-EemJTaeYhZuDRA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_mOeUMCCvEemw1L3J4dNy4w" annotatedElement="_ZrpFwCCvEemw1L3J4dNy4w">
              <body>Specifies IPv6 address mode for vrouter. Possible values: &#xD;
&#xD;
• SLAAC. &#xD;
&#xD;
• DHCPV6-STATEFUL. &#xD;
&#xD;
• DHCPV6-STATELESS. &#xD;
&#xD;
May be present when the value of the ipVersion attribute is &quot;IPV6&quot; and shall be absent otherwise. Must be present when the VLAN/VXLAN connects to one or more vrouters. &#xD;
&#xD;
Note: The value of  ipv6RaMode and ipv6AddressMode must be same.&#xD;
</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GVNxsCCxEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GVSqMCCxEemw1L3J4dNy4w" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_5LAPoCCvEemw1L3J4dNy4w" name="hostRoutes" type="_vxJ9ADafEei23_xWdimG9w">
            <ownedComment xmi:type="uml:Comment" xmi:id="_E6Ee0CCwEemw1L3J4dNy4w" annotatedElement="_5LAPoCCvEemw1L3J4dNy4w">
              <body>Static routing list, including estination and nexthop information.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_BnXX8CCwEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Bnc3gCCwEemw1L3J4dNy4w" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_65JzgCCvEemw1L3J4dNy4w" name="dnsNameServers">
            <ownedComment xmi:type="uml:Comment" xmi:id="_NtSn8CCwEemw1L3J4dNy4w" annotatedElement="_65JzgCCvEemw1L3J4dNy4w">
              <body>DNS server list.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Kx2xkCCwEemw1L3J4dNy4w"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Kx7qECCwEemw1L3J4dNy4w" value="*"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_I79lEB8-EemJTaeYhZuDRA" name="IpV6AdressMode">
          <ownedComment xmi:type="uml:Comment" xmi:id="_OQxtoB8-EemJTaeYhZuDRA" annotatedElement="_I79lEB8-EemJTaeYhZuDRA">
            <body>Specifies IPv6 address mode.  &#xD;
May be present when the value of the&#xD;
ipVersion attribute is IPV6 and shall be&#xD;
absent otherwise.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_QWVE4B8-EemJTaeYhZuDRA" name="SLAAC"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_UkypYB8-EemJTaeYhZuDRA" name="DHCPV6_STATEFUL"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_W1oDkB8-EemJTaeYhZuDRA" name="DHCPV6_STATELESS"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_TTf2EB89EemJTaeYhZuDRA" name="IpVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_at05oB89EemJTaeYhZuDRA" annotatedElement="_TTf2EB89EemJTaeYhZuDRA">
            <body>Specifies IP version of this L3 protocol.&#xD;
Value:&#xD;
• IPV4.&#xD;
• IPV6.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_XAJG8B89EemJTaeYhZuDRA" name="IPV4"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_YHaRAB89EemJTaeYhZuDRA" name="IPV6"/>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_B1G2UDd_EeiIfPeSAqyGdQ" name="QoS">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DNOvkGNgEeio9amveq0yWQ" annotatedElement="_B1G2UDd_EeiIfPeSAqyGdQ">
            <body>The QoS datatype specifies quality of service parameters applicable to a VL.&#xD;
It is the asbstract parent of the NsQos and VnfQos datatypes, as the NsQoS (QoS in ETSI GS NFV IFA 014) includes a priority attribute, while VnfQoS (QoS in ETSI GS NFV IFA 011) does not.&#xD;
</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_GA6IYDd_EeiIfPeSAqyGdQ" name="latency" type="_p3EKoDm0EeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_P3EVMDd_EeiIfPeSAqyGdQ" annotatedElement="_GA6IYDd_EeiIfPeSAqyGdQ">
              <body>Maximum latency in ms.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_G-MQADd_EeiIfPeSAqyGdQ" name="packetDelayVariation" type="_p3EKoDm0EeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_V5HXMDd_EeiIfPeSAqyGdQ" annotatedElement="_G-MQADd_EeiIfPeSAqyGdQ">
              <body>Maximum jitter in ms.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Hy64kDd_EeiIfPeSAqyGdQ" name="packetLossRatio" type="_p3EKoDm0EeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_bo3vUDd_EeiIfPeSAqyGdQ" annotatedElement="_Hy64kDd_EeiIfPeSAqyGdQ">
              <body>Maximum packet loss ratio. Cardinality is 0 if no packetLossRatio requirement exists.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Z7MFgDd_EeiIfPeSAqyGdQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Z7WdkDd_EeiIfPeSAqyGdQ" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_uFBX8PuHEeiYVshOvl6_ww" name="qosId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_LF1bwPuIEeiYVshOvl6_ww" annotatedElement="_uFBX8PuHEeiYVshOvl6_ww">
              <body>Qos ID.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_RayLoPuIEeiYVshOvl6_ww" name="qosName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_ZP674PuIEeiYVshOvl6_ww" annotatedElement="_RayLoPuIEeiYVshOvl6_ww">
              <body>Human readable Qos name.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_gUB30PuIEeiYVshOvl6_ww" name="rules" type="_vxJ9ADafEei23_xWdimG9w">
            <ownedComment xmi:type="uml:Comment" xmi:id="_yom7EPuLEeiYVshOvl6_ww" annotatedElement="_gUB30PuIEeiYVshOvl6_ww">
              <body>Detailed requirements of Qos, including maximum bandwidth limitation{max_kbps}、maximum burst bandwidth limitation{max_burst_kbps} 、direction{egress|ingress},etc.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kTldoPuIEeiYVshOvl6_ww"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kUKFYPuIEeiYVshOvl6_ww" value="*"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_MevNkJddEei-sOl6ywWHlg" name="AddressType">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zYqPEJdeEei-sOl6ywWHlg" annotatedElement="_MevNkJddEei-sOl6ywWHlg">
            <body>Type of address</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_TXtQgJddEei-sOl6ywWHlg" name="MAC"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_UVFewJddEei-sOl6ywWHlg" name="IP"/>
        </packagedElement>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_BprD8OLJEeiKy5JVrA0UGA" name="Root">
      <ownedComment xmi:type="uml:Comment" xmi:id="_j1UzAPgUEeiEqKXVVPCm1Q" annotatedElement="_BprD8OLJEeiKy5JVrA0UGA">
        <body>A set of common business entities that collectively serve as the foundation of the ONAP Information Model.. This set of root classess enable the entities in different domains of the Information Model to be associated with each other, providing greater overall coherence.</body>
      </ownedComment>
      <packagedElement xmi:type="uml:Package" xmi:id="_ErJ38OLJEeiKy5JVrA0UGA" name="Associations">
        <packagedElement xmi:type="uml:Association" xmi:id="_kO0hMBp7EemOGejS9lsDjA" name="EntityFurtherDefinedBy" memberEnd="_kO29cBp7EemOGejS9lsDjA _kO4LkBp7EemOGejS9lsDjA">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_kO2WYBp7EemOGejS9lsDjA" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_kO2WYRp7EemOGejS9lsDjA" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_kO4LkBp7EemOGejS9lsDjA" name="entity" type="_1POjoOwXEei7-e9MrPJW7Q" association="_kO0hMBp7EemOGejS9lsDjA"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_kO29cBp7EemOGejS9lsDjA" name="managedentity" type="_gBaFkBp7EemOGejS9lsDjA" aggregation="composite" association="_kO0hMBp7EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_tQHikBp7EemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_tQLM8Bp7EemOGejS9lsDjA" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_vmPJwBqZEemOGejS9lsDjA" memberEnd="_vmPw0hqZEemOGejS9lsDjA _vmQ-8BqZEemOGejS9lsDjA">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_vmPw0BqZEemOGejS9lsDjA" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_vmPw0RqZEemOGejS9lsDjA" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_vmPw0hqZEemOGejS9lsDjA" name="metadata" type="_roVJwBqZEemOGejS9lsDjA" aggregation="shared" association="_vmPJwBqZEemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_z7U6sBqZEemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_z7XW8BqZEemOGejS9lsDjA" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_vmQ-8BqZEemOGejS9lsDjA" name="entity" type="_1POjoOwXEei7-e9MrPJW7Q" association="_vmPJwBqZEemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_1DVroBqZEemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_1DZWABqZEemOGejS9lsDjA" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_dxmUIDE6Eemw1_Ys6rcLWw" name="DomainHasEntity" memberEnd="_dxniQTE6Eemw1_Ys6rcLWw _dxowYDE6Eemw1_Ys6rcLWw">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_dxm7MDE6Eemw1_Ys6rcLWw" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_dxniQDE6Eemw1_Ys6rcLWw" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_dxniQTE6Eemw1_Ys6rcLWw" name="entity" type="_1POjoOwXEei7-e9MrPJW7Q" aggregation="shared" association="_dxmUIDE6Eemw1_Ys6rcLWw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_CBrlkDE8Eemw1_Ys6rcLWw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_CCGcUDE8Eemw1_Ys6rcLWw" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_dxowYDE6Eemw1_Ys6rcLWw" name="managementdomain" type="_SDiKgDE6Eemw1_Ys6rcLWw" association="_dxmUIDE6Eemw1_Ys6rcLWw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DRXEwDE8Eemw1_Ys6rcLWw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DRaIEDE8Eemw1_Ys6rcLWw" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_PrdukIncEemVXsYTZj8frQ" name="DesignEntityHasSelectionCriteria" memberEnd="_PriAAIncEemVXsYTZj8frQ _PrjOIIncEemVXsYTZj8frQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Prgx4IncEemVXsYTZj8frQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_PrhY8IncEemVXsYTZj8frQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_PriAAIncEemVXsYTZj8frQ" name="designentity" type="_v04t4DFPEemw1_Ys6rcLWw" association="_PrdukIncEemVXsYTZj8frQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_edxFQIncEemVXsYTZj8frQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_eeF1YIncEemVXsYTZj8frQ" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_PrjOIIncEemVXsYTZj8frQ" name="selectioncriteria" type="_AkO5gF0VEemiOP02o5T8tA" association="_PrdukIncEemVXsYTZj8frQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fkkVQIncEemVXsYTZj8frQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fkyXsIncEemVXsYTZj8frQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_uTRv8IndEemVXsYTZj8frQ" name="SelectionCriteriaCompositeComprisedOfSelectionCriteria" memberEnd="_uTS-EondEemVXsYTZj8frQ _uTTlIIndEemVXsYTZj8frQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_uTS-EIndEemVXsYTZj8frQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_uTS-EYndEemVXsYTZj8frQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_uTS-EondEemVXsYTZj8frQ" name="selectioncriteria" type="_AkO5gF0VEemiOP02o5T8tA" aggregation="shared" association="_uTRv8IndEemVXsYTZj8frQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3EZAQIndEemVXsYTZj8frQ" value="2"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3EoQ0IndEemVXsYTZj8frQ" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_uTTlIIndEemVXsYTZj8frQ" name="selectioncriteriacomposite" type="_A_9MMF0VEemiOP02o5T8tA" association="_uTRv8IndEemVXsYTZj8frQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5ZcMEIndEemVXsYTZj8frQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5ZpncIndEemVXsYTZj8frQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_WwqCwL6ZEem4xcGs3yJOww" name="ParameterGroupHasParameter" memberEnd="_Wwr38L6ZEem4xcGs3yJOww _WwttIL6ZEem4xcGs3yJOww">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_WwrQ4L6ZEem4xcGs3yJOww" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_WwrQ4b6ZEem4xcGs3yJOww" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedComment xmi:type="uml:Comment" xmi:id="_4bTo8N7ZEemt8qGnFrqSFA" annotatedElement="_WwqCwL6ZEem4xcGs3yJOww">
            <body>A Parameter can be in more than one ParameterGroup, and a ParameterGroup can have some number of Parameters.</body>
          </ownedComment>
          <ownedEnd xmi:type="uml:Property" xmi:id="_Wwr38L6ZEem4xcGs3yJOww" name="parameter" type="_Zqsc4L6XEem4xcGs3yJOww" aggregation="shared" association="_WwqCwL6ZEem4xcGs3yJOww">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_de5cYL6ZEem4xcGs3yJOww" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_de9t0L6ZEem4xcGs3yJOww" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_WwttIL6ZEem4xcGs3yJOww" name="dynamicparameter" type="_fcsFcJ2BEemXg71wwI_kPA" association="_WwqCwL6ZEem4xcGs3yJOww">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_u5IvIN7ZEemt8qGnFrqSFA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_u5eGUN7ZEemt8qGnFrqSFA" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_ucwrsL6ZEem4xcGs3yJOww" name="ParameterEnumeratedBySpecValue" memberEnd="_ucxSwr6ZEem4xcGs3yJOww _ucyg4L6ZEem4xcGs3yJOww">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ucxSwL6ZEem4xcGs3yJOww" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ucxSwb6ZEem4xcGs3yJOww" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ucxSwr6ZEem4xcGs3yJOww" name="dynamicparmspecvalue" type="_J6iP8J2fEemXg71wwI_kPA" aggregation="composite" association="_ucwrsL6ZEem4xcGs3yJOww">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9k6WkL6ZEem4xcGs3yJOww"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9k-A8L6ZEem4xcGs3yJOww" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ucyg4L6ZEem4xcGs3yJOww" name="parameter" type="_Zqsc4L6XEem4xcGs3yJOww" association="_ucwrsL6ZEem4xcGs3yJOww"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_vro5oL6ZEem4xcGs3yJOww" name="ParameterHasInstanceValue" memberEnd="_vrpgsr6ZEem4xcGs3yJOww _vrqHwL6ZEem4xcGs3yJOww">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_vrpgsL6ZEem4xcGs3yJOww" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_vrpgsb6ZEem4xcGs3yJOww" key="nature" value="UML_Nature"/>
          </eAnnotations>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_OYD78L6gEem4xcGs3yJOww" name="DynamicParmSpecValueInstantiatedAsDynamicParmValue" memberEnd="_OYEjAr6gEem4xcGs3yJOww _OYFKEL6gEem4xcGs3yJOww">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_OYEjAL6gEem4xcGs3yJOww" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_OYEjAb6gEem4xcGs3yJOww" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_OYEjAr6gEem4xcGs3yJOww" name="dynamicparamvalue" type="_kxWgYJ2qEemXg71wwI_kPA" association="_OYD78L6gEem4xcGs3yJOww">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_lTLM0L6gEem4xcGs3yJOww"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_lUWRgL6gEem4xcGs3yJOww" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_OYFKEL6gEem4xcGs3yJOww" name="dynamicparmspecvalue" type="_J6iP8J2fEemXg71wwI_kPA" association="_OYD78L6gEem4xcGs3yJOww">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_o0U_YL6gEem4xcGs3yJOww"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_o1F0YL6gEem4xcGs3yJOww" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_biUdMKMJEemYd6Tamcc5WQ" name="OperationalEntityFurtherDefinedByParam" memberEnd="_bin_MKMJEemYd6Tamcc5WQ _bi0zgKMJEemYd6Tamcc5WQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_bimxEKMJEemYd6Tamcc5WQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_bimxEaMJEemYd6Tamcc5WQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_bin_MKMJEemYd6Tamcc5WQ" name="dynamicparamvalue" type="_kxWgYJ2qEemXg71wwI_kPA" association="_biUdMKMJEemYd6Tamcc5WQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_twxKoKMJEemYd6Tamcc5WQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_tw4fYKMJEemYd6Tamcc5WQ" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_bi0zgKMJEemYd6Tamcc5WQ" name="operationalentity" type="_0Zik0DFPEemw1_Ys6rcLWw" association="_biUdMKMJEemYd6Tamcc5WQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_zkmnYJ2sEemXg71wwI_kPA" name="DesignEntityFurtherDefinedByParmGroup" memberEnd="_zknOcp2sEemXg71wwI_kPA _zkqRwJ2sEemXg71wwI_kPA">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_zknOcJ2sEemXg71wwI_kPA" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_zknOcZ2sEemXg71wwI_kPA" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_zknOcp2sEemXg71wwI_kPA" name="dynamicparameter" type="_fcsFcJ2BEemXg71wwI_kPA" association="_zkmnYJ2sEemXg71wwI_kPA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MhSG8KMJEemYd6Tamcc5WQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Mhm3EKMJEemYd6Tamcc5WQ" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_zkqRwJ2sEemXg71wwI_kPA" name="designentity" type="_v04t4DFPEemw1_Ys6rcLWw" association="_zkmnYJ2sEemXg71wwI_kPA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DSwMwMBTEem3GPFSfqjGLQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DTVbkMBTEem3GPFSfqjGLQ" value="*"/>
          </ownedEnd>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_HtkgEOLJEeiKy5JVrA0UGA" name="Diagrams" URI="">
        <ownedComment xmi:type="uml:Comment" xmi:id="_2v3KwOwpEei7-e9MrPJW7Q">
          <body>Perhaps all these attributes can be moved up to OnboardingNfDescriptor</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_Cg3eMOwrEei7-e9MrPJW7Q">
          <body>Add tosca.nodes.nfvl.nf attributes here (from https://wiki.onap.org/pages/viewpage.action?pageId=45303981)&#xD;
</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_Cg0I8OwtEei7-e9MrPJW7Q">
          <body>defaultLocalizationLangauge- string, not required (*) goes to OnboardingNfDescriptor</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_IyHjYBqaEemOGejS9lsDjA">
          <body>Perhaps put Polilcy, Descriptor under Entity</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_V-5twBqaEemOGejS9lsDjA">
          <body>Should ManagedEntity be a subclass or an aggregation?</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_ZJZT0BqaEemOGejS9lsDjA">
          <body>Do we root business interaction</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_o___8DBuEem7efWZBQe64g">
          <body>can digitally communicate</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_U0FX0DFAEemw1_Ys6rcLWw">
          <body>Mgmt Domain</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_npkUEDX2EemvTc8tEY2xig">
          <body>These classes are temporary copies of the actual classes to not impact other models until proposal is accepted</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_C-vEcL9qEemOn4_gYz_95A">
          <body>ParameterGroup and Parameter could be collapsed with a recursive relationship added.</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_SDwvIMTWEemrXPg1xDDmKg">
          <body>Note:  This concept has some basis on the TMF SID Characteristic Pattern.</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_Gkh7YMprEemxyP_sJGfnPA">
          <body>Assumption made that all values will be of the same type and units of measure for a given Parameter.</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_V-ORQPASEembhOFQbDnUWw">
          <body>Colored classes are examples in the context of tis proposal.</body>
        </ownedComment>
        <packagedElement xmi:type="uml:Class" xmi:id="_eR_ykPJcEeibsZxxyZUKdQ" name="VnfcDescriptor"/>
        <packagedElement xmi:type="uml:Class" xmi:id="__6rFMPMTEeiKa_-nH9J3Lg" name="ServiceDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_mVqk8DFQEemw1_Ys6rcLWw" general="_v04t4DFPEemw1_Ys6rcLWw"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_roVJwBqZEemOGejS9lsDjA" name="Metadata">
          <generalization xmi:type="uml:Generalization" xmi:id="_uV144BqZEemOGejS9lsDjA" general="_eCjlEOLJEeiKy5JVrA0UGA"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_iQAhACY1EemRA_CB-n5OfQ" name="VnfD">
          <generalization xmi:type="uml:Generalization" xmi:id="_QJCL4DFqEemw1_Ys6rcLWw" general="_vzn94DYWEemvTc8tEY2xig"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_r58PsCY1EemRA_CB-n5OfQ" name="PnfD">
          <generalization xmi:type="uml:Generalization" xmi:id="_UGguEDFqEemw1_Ys6rcLWw" general="_vzn94DYWEemvTc8tEY2xig"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_Xht84CY2EemRA_CB-n5OfQ" name="Service">
          <generalization xmi:type="uml:Generalization" xmi:id="_rTv88CY2EemRA_CB-n5OfQ" general="_1POjoOwXEei7-e9MrPJW7Q"/>
          <generalization xmi:type="uml:Generalization" xmi:id="_HxNkIDFQEemw1_Ys6rcLWw" general="_0Zik0DFPEemw1_Ys6rcLWw"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_aUEIsCY2EemRA_CB-n5OfQ" name="Pnf">
          <generalization xmi:type="uml:Generalization" xmi:id="_t2wsQCY2EemRA_CB-n5OfQ" general="_1POjoOwXEei7-e9MrPJW7Q"/>
          <generalization xmi:type="uml:Generalization" xmi:id="_kXBvMDFqEemw1_Ys6rcLWw" general="_qbY4cDYXEemvTc8tEY2xig"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_b-lw0CY2EemRA_CB-n5OfQ" name="Vnf">
          <generalization xmi:type="uml:Generalization" xmi:id="_vuJrsCY2EemRA_CB-n5OfQ" general="_1POjoOwXEei7-e9MrPJW7Q"/>
          <generalization xmi:type="uml:Generalization" xmi:id="_qWwdADFqEemw1_Ys6rcLWw" general="_qbY4cDYXEemvTc8tEY2xig"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_ASESADFQEemw1_Ys6rcLWw" name="Resource">
          <generalization xmi:type="uml:Generalization" xmi:id="_HDgJkDFQEemw1_Ys6rcLWw" general="_0Zik0DFPEemw1_Ys6rcLWw"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_il9ZADFQEemw1_Ys6rcLWw" name="ResourceDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_nCVdsDFQEemw1_Ys6rcLWw" general="_v04t4DFPEemw1_Ys6rcLWw"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_vzn94DYWEemvTc8tEY2xig" name="NetworkFunctionDesc" isAbstract="true">
          <generalization xmi:type="uml:Generalization" xmi:id="_iYxF0DYXEemvTc8tEY2xig" general="_il9ZADFQEemw1_Ys6rcLWw"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_qbY4cDYXEemvTc8tEY2xig" name="NetworkFunction" isAbstract="true">
          <generalization xmi:type="uml:Generalization" xmi:id="_BdCPIDYYEemvTc8tEY2xig" general="_ASESADFQEemw1_Ys6rcLWw"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_3m850DYiEemz0q_yvHDIRA" name="NSD">
          <generalization xmi:type="uml:Generalization" xmi:id="_Cnz_MDYjEemz0q_yvHDIRA" general="__6rFMPMTEeiKa_-nH9J3Lg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_MbJhgDYjEemz0q_yvHDIRA" name="NS">
          <generalization xmi:type="uml:Generalization" xmi:id="_Pjz7kDYjEemz0q_yvHDIRA" general="_Xht84CY2EemRA_CB-n5OfQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_Be5FoO66EemJwbfAie9rjQ" name="ParameterProfile" isAbstract="true"/>
        <packagedElement xmi:type="uml:Association" xmi:id="_nO6VQO66EemJwbfAie9rjQ" name="ParameterProfileRealizedByParameterGroup" memberEnd="_nO9YkO66EemJwbfAie9rjQ _nO9_oO66EemJwbfAie9rjQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_nO8KcO66EemJwbfAie9rjQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_nO8Kce66EemJwbfAie9rjQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_nO9YkO66EemJwbfAie9rjQ" name="parametergroup" type="_fcsFcJ2BEemXg71wwI_kPA" association="_nO6VQO66EemJwbfAie9rjQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MEJusO9rEemJwbfAie9rjQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_MEPOQO9rEemJwbfAie9rjQ" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_nO9_oO66EemJwbfAie9rjQ" name="parameterprofile" type="_Be5FoO66EemJwbfAie9rjQ" association="_nO6VQO66EemJwbfAie9rjQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_NAc-4O9rEemJwbfAie9rjQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_NAmv4O9rEemJwbfAie9rjQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_GEv7kO9sEemJwbfAie9rjQ" name="3GPPServiceProfile" isAbstract="true">
          <generalization xmi:type="uml:Generalization" xmi:id="_bMr-oO9sEemJwbfAie9rjQ" general="_Be5FoO66EemJwbfAie9rjQ"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_sjrNcPANEembhOFQbDnUWw" name="Property2"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_tmWycPANEembhOFQbDnUWw" name="Property3"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_x_Ma8PANEembhOFQbDnUWw" name="Property4"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_NggigO9sEemJwbfAie9rjQ" name="MEFeAccessServiceProfile" isAbstract="true">
          <generalization xmi:type="uml:Generalization" xmi:id="_b_vzQO9sEemJwbfAie9rjQ" general="_Be5FoO66EemJwbfAie9rjQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_IkxEcO9wEemJwbfAie9rjQ" name="ParmSpecValueII"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_8Z4mgO9wEemJwbfAie9rjQ" name="RangeValueSpec">
          <generalization xmi:type="uml:Generalization" xmi:id="_vZ4k0O95EemJwbfAie9rjQ" general="_IkxEcO9wEemJwbfAie9rjQ"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_aUSZMO97EemJwbfAie9rjQ" name="valueFrom">
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_bq3KkO97EemJwbfAie9rjQ" name="valueTo">
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_cuaSQO97EemJwbfAie9rjQ" name="rangeStep">
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="__9cz4O9wEemJwbfAie9rjQ" name="DescreteValueSpec">
          <generalization xmi:type="uml:Generalization" xmi:id="_xs3UEO95EemJwbfAie9rjQ" general="_IkxEcO9wEemJwbfAie9rjQ"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_kC1FoO98EemJwbfAie9rjQ" name="value">
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_guoCkO9_EemJwbfAie9rjQ" name="ParameterEnumeratedBy SpecValue" memberEnd="_guopou9_EemJwbfAie9rjQ _gup3wO9_EemJwbfAie9rjQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_guopoO9_EemJwbfAie9rjQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_guopoe9_EemJwbfAie9rjQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_guopou9_EemJwbfAie9rjQ" name="parameter" type="_Zqsc4L6XEem4xcGs3yJOww" association="_guoCkO9_EemJwbfAie9rjQ"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_gup3wO9_EemJwbfAie9rjQ" name="parmspecvalueii" type="_IkxEcO9wEemJwbfAie9rjQ" aggregation="composite" association="_guoCkO9_EemJwbfAie9rjQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vSxBcO9_EemJwbfAie9rjQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vTCuQO9_EemJwbfAie9rjQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_81_lYPANEembhOFQbDnUWw" name="SomeOtherProfile" isAbstract="true">
          <generalization xmi:type="uml:Generalization" xmi:id="_MOFJsPAOEembhOFQbDnUWw" general="_Be5FoO66EemJwbfAie9rjQ"/>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_JjPoQOLJEeiKy5JVrA0UGA" name="RootObjectClasses">
        <packagedElement xmi:type="uml:Class" xmi:id="_eCjlEOLJEeiKy5JVrA0UGA" name="RootEntity" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Nx3i4PgUEeiEqKXVVPCm1Q" annotatedElement="_eCjlEOLJEeiKy5JVrA0UGA">
            <body>This is the top of the ONAP class hierarchy. The purpose of the RootEntity is to define a set of attributes that are common to all entities that derive from it. These properties enable us to name, describe, and identify all objects in the environment.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_vi4oQOLJEeiKy5JVrA0UGA" name="name">
            <ownedComment xmi:type="uml:Comment" xmi:id="_Y5yEwPgPEeiEqKXVVPCm1Q" annotatedElement="_vi4oQOLJEeiKy5JVrA0UGA">
              <body>Represents a user-friendly identifier of an object. It is a (possibly ambiguous) name by which the object is commonly known in some limited scope (such as an organization) and conforms to the naming conventions of the country or culture with which it is associated. It is NOT used as a naming attribute (i.e., to uniquely identify an instance of the object).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_W2GEcCYfEemRA_CB-n5OfQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_W2S4wCYfEemRA_CB-n5OfQ" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_wEHtEOLJEeiKy5JVrA0UGA" name="description">
            <ownedComment xmi:type="uml:Comment" xmi:id="_fixyAPgPEeiEqKXVVPCm1Q" annotatedElement="_wEHtEOLJEeiKy5JVrA0UGA">
              <body>Defines a textual free-form description of the object. </body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_kcYqkAUbEemrBZmpgd_POA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_kffB4AUbEemrBZmpgd_POA" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_wj9DsOLJEeiKy5JVrA0UGA" name="id" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_kvw0QPgPEeiEqKXVVPCm1Q" annotatedElement="_wj9DsOLJEeiKy5JVrA0UGA">
              <body>Unambiguously distinguishes different object instances. It is the naming attribute of the object.</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_6NT68PgPEeiEqKXVVPCm1Q" annotatedElement="_wj9DsOLJEeiKy5JVrA0UGA">
              <body>Identifier of this information element.   This attribute shall be globally unique.</body>
            </ownedComment>
            <defaultValue xmi:type="uml:LiteralString" xmi:id="_Yg6D8OLVEeiKy5JVrA0UGA" value=""/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_1POjoOwXEei7-e9MrPJW7Q" name="Entity" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_DuRnYPofEeiXda0FrsRiEw" annotatedElement="_1POjoOwXEei7-e9MrPJW7Q">
            <body>This is an abstract class that extends the RootEntity class and represents characteristics and behaviors of concepts that pertain to the NFV managed environment. &#xD;
</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_7MZssOwXEei7-e9MrPJW7Q" general="_eCjlEOLJEeiKy5JVrA0UGA"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_SDiKgDE6Eemw1_Ys6rcLWw" name="Domain">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tLwGQDFAEemw1_Ys6rcLWw" annotatedElement="_SDiKgDE6Eemw1_Ys6rcLWw">
            <body>Defines a collection of entities that share a common purpose. In addition, each constituent Entity in an Domain is both uniquely addressable and uniquely identifiable within that Domain</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_ZWh3ADE6Eemw1_Ys6rcLWw" general="_eCjlEOLJEeiKy5JVrA0UGA"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_gBaFkBp7EemOGejS9lsDjA" name="ManagedEntity">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Xvl48DYdEemvTc8tEY2xig" annotatedElement="_gBaFkBp7EemOGejS9lsDjA">
            <body>A ManagedEntity is used to specify that an Entity is manageable by electronic means.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_dShWADYdEemvTc8tEY2xig" name="managementMethodCurrent">
            <ownedComment xmi:type="uml:Comment" xmi:id="_7EuagDYdEemvTc8tEY2xig" annotatedElement="_dShWADYdEemvTc8tEY2xig">
              <body>This is an enumerated integer that defines the particular type of management method that is currently being used. &#xD;
&#xD;
Permitted Values:&#xD;
 0: Unknown&#xD;
 1: None&#xD;
 2: CLI&#xD;
 3: SNMP&#xD;
 4: TL1&#xD;
 5: CMIP&#xD;
 6: Proprietary</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_eCmvIDYdEemvTc8tEY2xig" name="managementMethodSupported">
            <ownedComment xmi:type="uml:Comment" xmi:id="_-2ajcDYdEemvTc8tEY2xig" annotatedElement="_eCmvIDYdEemvTc8tEY2xig">
              <body>This is an array of integers that define the different management methods that are supported by this object. &#xD;
&#xD;
Permitted Values:&#xD;
&#xD;
 0: Unknown&#xD;
 1: None&#xD;
 2: CLI&#xD;
 3: SNMP&#xD;
 4: TL1&#xD;
 5: CMIP&#xD;
 6: Proprietary</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Aodv4DYeEemvTc8tEY2xig" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_AoiBUDYeEemvTc8tEY2xig" value="*"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_v04t4DFPEemw1_Ys6rcLWw" name="DesignEntity" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NLQgEDFSEemw1_Ys6rcLWw" annotatedElement="_v04t4DFPEemw1_Ys6rcLWw">
            <body>A template which describes an OperationalEntity in terms of deployment and operational behavior requirements.</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_AFeokFxzEemycfDPZTAung">
            <body>Note: The only fields being used in this class are Name and MRN (manufactureReferenceNumber.  The rest are optional.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_QjAw8DFQEemw1_Ys6rcLWw" general="_1POjoOwXEei7-e9MrPJW7Q"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Td26cOLNEeiKy5JVrA0UGA" name="validFor" type="_oyf9MOwXEei7-e9MrPJW7Q">
            <ownedComment xmi:type="uml:Comment" xmi:id="_hg0WkPgQEeiEqKXVVPCm1Q" annotatedElement="_Td26cOLNEeiKy5JVrA0UGA">
              <body>The period during which the design entity is valid.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_T6QikOLNEeiKy5JVrA0UGA" name="status">
            <ownedComment xmi:type="uml:Comment" xmi:id="_DLjL0PgREeiEqKXVVPCm1Q" annotatedElement="_T6QikOLNEeiKy5JVrA0UGA">
              <body>The condition of the specification, such s active, inactive, or planned.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_eoc6EDYQEemvTc8tEY2xig" name="name" isUnique="false" redefinedProperty="_vi4oQOLJEeiKy5JVrA0UGA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_37KrwDYhEemz0q_yvHDIRA" annotatedElement="_eoc6EDYQEemvTc8tEY2xig">
              <body>Represents a user-friendly identifier of an object. It is a (possibly ambiguous) name by which the object is commonly known in some limited scope (such as an organization) and conforms to the naming conventions of the country or culture with which it is associated. It is NOT used as a naming attribute (i.e., to uniquely identify an instance of the object).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_E4CakDYREemvTc8tEY2xig" name="description" isUnique="false" redefinedProperty="_wEHtEOLJEeiKy5JVrA0UGA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_7Ny6IDYhEemz0q_yvHDIRA" annotatedElement="_E4CakDYREemvTc8tEY2xig">
              <body>Defines a textual free-form description of the object. </body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_0Zik0DFPEemw1_Ys6rcLWw" name="OperationalEntity" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_pJG1kDFTEemw1_Ys6rcLWw" annotatedElement="_0Zik0DFPEemw1_Ys6rcLWw">
            <body>An OperationalEntity is a deployment in a NFV environment of a DesignEntity.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_RDwtkDFQEemw1_Ys6rcLWw" general="_1POjoOwXEei7-e9MrPJW7Q"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_AkO5gF0VEemiOP02o5T8tA" name="SelectionCriteria">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gog5YILoEemyVus8T4NvCQ" annotatedElement="_AkO5gF0VEemiOP02o5T8tA">
            <body>SelectionCriteria finds descriptors and instances according to specific properties of those entities.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_h8AhkILoEemyVus8T4NvCQ" name="SelectionCriteriaId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_NPd54IMQEemIU81rY2FFFw" annotatedElement="_h8AhkILoEemyVus8T4NvCQ">
              <body>Unique indentifier of this SelectionCriteria.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_A_9MMF0VEemiOP02o5T8tA" name="SelectionCriteriaComposite">
          <ownedComment xmi:type="uml:Comment" xmi:id="_JOTcQILpEemyVus8T4NvCQ" annotatedElement="_A_9MMF0VEemiOP02o5T8tA">
            <body>A SelectionCriteria that is an aggregation of multiple selection criterias.   Agregation can be for example AND, OR, or XOR logical operations.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_qQWgYF0XEemiOP02o5T8tA" general="_AkO5gF0VEemiOP02o5T8tA"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_lo6SIILdEemyVus8T4NvCQ" name="compositeOperator" type="_rMIDEILdEemyVus8T4NvCQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_LtI2MILpEemyVus8T4NvCQ" annotatedElement="_lo6SIILdEemyVus8T4NvCQ">
              <body>Logical operation for filters composition,  e.g. logical AND, OR, XOR.</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_BZSSMF0VEemiOP02o5T8tA" name="SelectionCriteriaAtomic">
          <ownedComment xmi:type="uml:Comment" xmi:id="_r78RQILvEemyVus8T4NvCQ" annotatedElement="_BZSSMF0VEemiOP02o5T8tA">
            <body>A simple (atomic) selection criteria that holds a specific attribute comparision expression.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_6LSTEF0XEemiOP02o5T8tA" general="_AkO5gF0VEemiOP02o5T8tA"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_U92FMILsEemyVus8T4NvCQ" name="metricName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_pcSX8ILvEemyVus8T4NvCQ" annotatedElement="_U92FMILsEemyVus8T4NvCQ">
              <body>Name of compared parameter or attribute.&#xD;
</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_tS31cOU7Eem4RuIQi6fMsw">
              <body>Name of compared parameter or attribute.&#xD;
</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_VorK4ILsEemyVus8T4NvCQ" name="operator" type="_1kyswILtEemyVus8T4NvCQ">
            <ownedComment xmi:type="uml:Comment" xmi:id="_3DfNcILvEemyVus8T4NvCQ" annotatedElement="_VorK4ILsEemyVus8T4NvCQ">
              <body>Comparison operator, e.g. equal, less than, greater or etc.&#xD;
</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_W1j0wILsEemyVus8T4NvCQ" name="value">
            <ownedComment xmi:type="uml:Comment" xmi:id="_7-STgILvEemyVus8T4NvCQ" annotatedElement="_W1j0wILsEemyVus8T4NvCQ">
              <body>Compared value (can be a name of a parameter in referenced class).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_XJrHgM8zEemfevCNCQbkKw" name="valueType">
            <ownedComment xmi:type="uml:Comment" xmi:id="_0TYr0M83EemfevCNCQbkKw" annotatedElement="_XJrHgM8zEemfevCNCQbkKw">
              <body>The type of the value property (String, Integer, Real, ...).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_fcsFcJ2BEemXg71wwI_kPA" name="ParameterGroup">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zH0l8MTWEemrXPg1xDDmKg" annotatedElement="_fcsFcJ2BEemXg71wwI_kPA">
            <body>A group of parameters that somehow relate or work together.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_oy4YwJ2BEemXg71wwI_kPA" name="parameterGroupName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_2XkfcMTWEemrXPg1xDDmKg" annotatedElement="_oy4YwJ2BEemXg71wwI_kPA">
              <body>Name of ParameterGroup</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_xfVLgJ2BEemXg71wwI_kPA" name="parameterGroupDescription">
            <ownedComment xmi:type="uml:Comment" xmi:id="_4-Rb8MTWEemrXPg1xDDmKg" annotatedElement="_xfVLgJ2BEemXg71wwI_kPA">
              <body>Description of ParameterGroup.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_2MynEJ2rEemXg71wwI_kPA" name="parameterGroupId" type="_AuYtcDkBEeiWMf5FLWfdLA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_7NMKkMTWEemrXPg1xDDmKg" annotatedElement="_2MynEJ2rEemXg71wwI_kPA">
              <body>ID of ParameterGroup.</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_J6iP8J2fEemXg71wwI_kPA" name="ParameterSpecValue">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gg_CIMTgEemrXPg1xDDmKg" annotatedElement="_J6iP8J2fEemXg71wwI_kPA">
            <body>A valid value of parameter (design time).</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_q2DKEL6hEem4xcGs3yJOww" name="value">
            <ownedComment xmi:type="uml:Comment" xmi:id="_FD6zkMThEemrXPg1xDDmKg" annotatedElement="_q2DKEL6hEem4xcGs3yJOww">
              <body>The value of the given ParameterSpecValue.</body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_jVdpwMpjEemxyP_sJGfnPA" annotatedElement="_q2DKEL6hEem4xcGs3yJOww">
              <body>A discrete value that the Parameter can take on.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XT3IYNSQEemxF5TqBFPL8g"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XU1YwNSQEemxF5TqBFPL8g" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_6P1TwMpjEemxyP_sJGfnPA" name="valueFrom">
            <ownedComment xmi:type="uml:Comment" xmi:id="_LI3GYMpkEemxyP_sJGfnPA" annotatedElement="_6P1TwMpjEemxyP_sJGfnPA">
              <body>The low range value that a characteristic can take on.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_alAwENSQEemxF5TqBFPL8g"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_alJS8NSQEemxF5TqBFPL8g" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_9_8vYMpjEemxyP_sJGfnPA" name="valueTo">
            <ownedComment xmi:type="uml:Comment" xmi:id="_NFVaIMpkEemxyP_sJGfnPA" annotatedElement="_9_8vYMpjEemxyP_sJGfnPA">
              <body>The upper range value that a characteristic can take on.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_c-iMMNSQEemxF5TqBFPL8g"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_c-rWINSQEemxF5TqBFPL8g" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_aTHl4MprEemxyP_sJGfnPA" name="rangeStep">
            <ownedComment xmi:type="uml:Comment" xmi:id="_xdDV4MprEemxyP_sJGfnPA" annotatedElement="_aTHl4MprEemxyP_sJGfnPA">
              <body>The specification that a range of values increases in steps, such as a range from 0 to 100 in steps of 5 with the resulting permitted values being 0, 5, 10, 15,...100. This complements the valueFrom and  valueTo attributes.  </body>
            </ownedComment>
            <ownedComment xmi:type="uml:Comment" xmi:id="_xvYYYOqeEemQocZcEjFuLQ">
              <body>The specification that a range of values increases in steps, such as a range from 0 to 100 in steps of 5 with the resulting permitted values being 0, 5, 10, 15,...100. This complements the valueFrom and  valueTo attributes.  </body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ogkJoM5pEemcqf4p4jcudw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ogq3UM5pEemcqf4p4jcudw" value="1"/>
            <defaultValue xmi:type="uml:LiteralInteger" xmi:id="_nY2ToM5pEemcqf4p4jcudw" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_Zqsc4L6XEem4xcGs3yJOww" name="Parameter">
          <ownedComment xmi:type="uml:Comment" xmi:id="__dtkkMTWEemrXPg1xDDmKg" annotatedElement="_Zqsc4L6XEem4xcGs3yJOww">
            <body>Some parameter that is part of a ParameterGroup.    If parameter can only hold certain values, those values are specified via ParameterSpecValue (design time).   The actual value is specified via ParameterValue (runtime).</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_NiuwEL6YEem4xcGs3yJOww" name="parameterName">
            <ownedComment xmi:type="uml:Comment" xmi:id="_DmVm0MTXEemrXPg1xDDmKg" annotatedElement="_NiuwEL6YEem4xcGs3yJOww">
              <body>Name of parameter. </body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_P-fn4L6YEem4xcGs3yJOww" name="IsInput">
            <ownedComment xmi:type="uml:Comment" xmi:id="_IKa2AMTXEemrXPg1xDDmKg" annotatedElement="_P-fn4L6YEem4xcGs3yJOww">
              <body>Boolean that specifices if this parameter is an input parameter.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_vrpgsr6ZEem4xcGs3yJOww" name="paramvalue" type="_kxWgYJ2qEemXg71wwI_kPA" aggregation="composite" association="_vro5oL6ZEem4xcGs3yJOww">
            <ownedComment xmi:type="uml:Comment" xmi:id="_WWzB4MTnEemrXPg1xDDmKg" annotatedElement="_vrpgsr6ZEem4xcGs3yJOww">
              <body>Parameter can have some number of runtime ParameterValues.   Each ParameterValue is also associated with some OperationalEntity (VnfInstance, ServiceInstance, ...).</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_DefKUL6gEem4xcGs3yJOww"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Dekp4L6gEem4xcGs3yJOww" value="*"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_FVSXIMBREem3GPFSfqjGLQ" name="isModifiable">
            <ownedComment xmi:type="uml:Comment" xmi:id="_O8XD4MTXEemrXPg1xDDmKg" annotatedElement="_FVSXIMBREem3GPFSfqjGLQ">
              <body>Bolean that specifices if the value can be modified or changed during the life of this parameter.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_3ciCIMBREem3GPFSfqjGLQ" name="valueType">
            <ownedComment xmi:type="uml:Comment" xmi:id="_X6QL8MTXEemrXPg1xDDmKg" annotatedElement="_3ciCIMBREem3GPFSfqjGLQ">
              <body>The type of this parameter (integer, string, ...).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_mbLdgMpjEemxyP_sJGfnPA" name="unitOfMeasure">
            <ownedComment xmi:type="uml:Comment" xmi:id="_zBYJAMpjEemxyP_sJGfnPA" annotatedElement="_mbLdgMpjEemxyP_sJGfnPA">
              <body>A length, surface, volume, dry measure, liquid measure, money, weight, time, and the like. In general, a determinate quantity or magnitude of the kind designated, taken as a standard of comparison for others of the same kind, in assigning to them numerical values, as 1 foot, 1 yard, 1 mile, 1 square foot.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fUuAcNSQEemxF5TqBFPL8g"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fUzgANSQEemxF5TqBFPL8g" value="1"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_yI8V8M5lEemcqf4p4jcudw" name="description">
            <ownedComment xmi:type="uml:Comment" xmi:id="_icMB0M5oEemcqf4p4jcudw" annotatedElement="_yI8V8M5lEemcqf4p4jcudw">
              <body>Description of the parameter.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_kxWgYJ2qEemXg71wwI_kPA" name="ParameterValue">
          <ownedComment xmi:type="uml:Comment" xmi:id="_SNl_kMThEemrXPg1xDDmKg" annotatedElement="_kxWgYJ2qEemXg71wwI_kPA">
            <body>The actual value of Parameter (runtime).</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_vrqHwL6ZEem4xcGs3yJOww" name="parameter" type="_Zqsc4L6XEem4xcGs3yJOww" association="_vro5oL6ZEem4xcGs3yJOww">
            <ownedComment xmi:type="uml:Comment" xmi:id="_AAMMQMTnEemrXPg1xDDmKg" annotatedElement="_vrqHwL6ZEem4xcGs3yJOww">
              <body>Runtime ParameterValue is associated with exactly one Parameter.    Parameter can have some number of runtime ParameterValues.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Fpm2sL6jEem4xcGs3yJOww" name="value">
            <ownedComment xmi:type="uml:Comment" xmi:id="_UUYF4MThEemrXPg1xDDmKg" annotatedElement="_Fpm2sL6jEem4xcGs3yJOww">
              <body>The actual value of Parameter (runtime).</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_MHVVoOLJEeiKy5JVrA0UGA" name="RootTypeDefinitons">
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_rMIDEILdEemyVus8T4NvCQ" name="CompositeOperator">
          <ownedComment xmi:type="uml:Comment" xmi:id="_gZViwM84EemfevCNCQbkKw" annotatedElement="_rMIDEILdEemyVus8T4NvCQ">
            <body>The operator being applied to to some group of selectoin critiera.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zobhAILdEemyVus8T4NvCQ" name="AND"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_1lXHwILdEemyVus8T4NvCQ" name="OR"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_2r4q8ILdEemyVus8T4NvCQ" name="XOR"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Enumeration" xmi:id="_1kyswILtEemyVus8T4NvCQ" name="Operator">
          <ownedComment xmi:type="uml:Comment" xmi:id="_oHIU4M84EemfevCNCQbkKw" annotatedElement="_1kyswILtEemyVus8T4NvCQ">
            <body>The operator being applied to some atomic selection critera.</body>
          </ownedComment>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_65Yy4ILtEemyVus8T4NvCQ" name="MORETHAN"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_8E0EMILtEemyVus8T4NvCQ" name="LESSTHAN"/>
          <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_8_vbYILtEemyVus8T4NvCQ" name="EQUAL"/>
        </packagedElement>
        <packagedElement xmi:type="uml:DataType" xmi:id="_e6hnYIMFEemyVus8T4NvCQ" name=" ConfigurableProperties">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sg3r0IMGEemyVus8T4NvCQ" annotatedElement="_e6hnYIMFEemyVus8T4NvCQ">
            <body>Dynamic, configurable properites of some entity.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_1pWIsIMFEemyVus8T4NvCQ" name="properties" type="_vxJ9ADafEei23_xWdimG9w">
            <ownedComment xmi:type="uml:Comment" xmi:id="_w5USwIMGEemyVus8T4NvCQ" annotatedElement="_1pWIsIMFEemyVus8T4NvCQ">
              <body>The specific configurable properties of some entity.</body>
            </ownedComment>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_7YMh4IMFEemyVus8T4NvCQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_7YVEwIMFEemyVus8T4NvCQ" value="*"/>
          </ownedAttribute>
        </packagedElement>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_c8u5EBnKEemlxOdMFpUVvQ" name="Business Interaction">
      <packagedElement xmi:type="uml:Package" xmi:id="_iFqhwBnKEemlxOdMFpUVvQ" name="Associations">
        <packagedElement xmi:type="uml:Association" xmi:id="_YFG2ABp-EemOGejS9lsDjA" name="BIComprisedOfBIItems" memberEnd="_YFHdEhp-EemOGejS9lsDjA _YFM8oBp-EemOGejS9lsDjA">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_YFHdEBp-EemOGejS9lsDjA" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_YFHdERp-EemOGejS9lsDjA" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_YFHdEhp-EemOGejS9lsDjA" name="businessinteractionitem" type="_NNQYIBp9EemOGejS9lsDjA" aggregation="shared" association="_YFG2ABp-EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_pQrKIBp-EemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_pRYUwBp-EemOGejS9lsDjA" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_YFM8oBp-EemOGejS9lsDjA" name="businessinteraction" type="__F4vsBnKEemlxOdMFpUVvQ" association="_YFG2ABp-EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_irlFcBp-EemOGejS9lsDjA" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_isAjQBp-EemOGejS9lsDjA" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_ZKZ8EBp8EemOGejS9lsDjA" name="BuisinessInteractionSpecCharacterizes" memberEnd="_ZKajIhp8EemOGejS9lsDjA _ZKbKMBp8EemOGejS9lsDjA">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ZKajIBp8EemOGejS9lsDjA" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ZKajIRp8EemOGejS9lsDjA" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ZKajIhp8EemOGejS9lsDjA" name="businessinteraction" type="__F4vsBnKEemlxOdMFpUVvQ" association="_ZKZ8EBp8EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_k5fZYBp8EemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_k5y7YBp8EemOGejS9lsDjA" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_ZKbKMBp8EemOGejS9lsDjA" name="businessinteractionspec" type="_UlJoMBp8EemOGejS9lsDjA" association="_ZKZ8EBp8EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_nO_4MBp8EemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_nPfAYBp8EemOGejS9lsDjA" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_xB6jwBp8EemOGejS9lsDjA" name="BusinessInteractionModifiedBy" memberEnd="_xB7K0hp8EemOGejS9lsDjA _xB_cQBp8EemOGejS9lsDjA">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_xB7K0Bp8EemOGejS9lsDjA" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_xB7K0Rp8EemOGejS9lsDjA" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_xB7K0hp8EemOGejS9lsDjA" name="businessinteractionversion" type="_toYcIBp8EemOGejS9lsDjA" aggregation="shared" association="_xB6jwBp8EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3mPMYBp8EemOGejS9lsDjA"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3mrRQBp8EemOGejS9lsDjA" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_xB_cQBp8EemOGejS9lsDjA" name="businessinteraction" type="__F4vsBnKEemlxOdMFpUVvQ" association="_xB6jwBp8EemOGejS9lsDjA">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_1E1moBp8EemOGejS9lsDjA" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_1FEQIBp8EemOGejS9lsDjA" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_1lDGoGEbEemButgjVWb0qQ" name="BIReferences" memberEnd="_1lMQkGEbEemButgjVWb0qQ _1lOFwGEbEemButgjVWb0qQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_1lKbYGEbEemButgjVWb0qQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_1lLCcGEbEemButgjVWb0qQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedComment xmi:type="uml:Comment" xmi:id="_r_VUIGEcEemButgjVWb0qQ" annotatedElement="_1lDGoGEbEemButgjVWb0qQ">
            <body>Associates a business interction that is referenced by a business interction</body>
          </ownedComment>
          <ownedEnd xmi:type="uml:Property" xmi:id="_1lMQkGEbEemButgjVWb0qQ" name="businessinteractionrelationship" type="_eV_i4GEXEemButgjVWb0qQ" association="_1lDGoGEbEemButgjVWb0qQ"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_1lOFwGEbEemButgjVWb0qQ" name="businessinteraction" type="__F4vsBnKEemlxOdMFpUVvQ" association="_1lDGoGEbEemButgjVWb0qQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_H8MdEGEcEemButgjVWb0qQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_H8WOEGEcEemButgjVWb0qQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_3p2P8GEbEemButgjVWb0qQ" name="BIReferencedBy" memberEnd="_3p23AmEbEemButgjVWb0qQ _3p4FIGEbEemButgjVWb0qQ">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_3p23AGEbEemButgjVWb0qQ" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_3p23AWEbEemButgjVWb0qQ" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedComment xmi:type="uml:Comment" xmi:id="_0uxwgGEcEemButgjVWb0qQ" annotatedElement="_3p2P8GEbEemButgjVWb0qQ">
            <body>Associates a business interaction that references </body>
          </ownedComment>
          <ownedEnd xmi:type="uml:Property" xmi:id="_3p23AmEbEemButgjVWb0qQ" name="businessinteractionrelationship" type="_eV_i4GEXEemButgjVWb0qQ" association="_3p2P8GEbEemButgjVWb0qQ"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_3p4FIGEbEemButgjVWb0qQ" name="businessinteraction" type="__F4vsBnKEemlxOdMFpUVvQ" association="_3p2P8GEbEemButgjVWb0qQ">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_U9kBoGEcEemButgjVWb0qQ"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_U9xdAGEcEemButgjVWb0qQ" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_E_wTkGE8EemQKt2NqrzEJw" name="BIIItemRefernces" memberEnd="_E_4PYGE8EemQKt2NqrzEJw _E_75wGE8EemQKt2NqrzEJw">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_E_3BQGE8EemQKt2NqrzEJw" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_E_3oUGE8EemQKt2NqrzEJw" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_E_4PYGE8EemQKt2NqrzEJw" name="businessinteractionitem" type="_NNQYIBp9EemOGejS9lsDjA" association="_E_wTkGE8EemQKt2NqrzEJw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_PNv8IGE9EemQKt2NqrzEJw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_POJkwGE9EemQKt2NqrzEJw" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_E_75wGE8EemQKt2NqrzEJw" name=" businessinteractionitemrelationship" type="_S3D3EGE7EemButgjVWb0qQ" association="_E_wTkGE8EemQKt2NqrzEJw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KrGQUGE9EemQKt2NqrzEJw" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KrKhwGE9EemQKt2NqrzEJw" value="1"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_G3regGE8EemQKt2NqrzEJw" name="BIItemReferencedBy" memberEnd="_G3sFkmE8EemQKt2NqrzEJw _G3tTsGE8EemQKt2NqrzEJw">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_G3sFkGE8EemQKt2NqrzEJw" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_G3sFkWE8EemQKt2NqrzEJw" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_G3sFkmE8EemQKt2NqrzEJw" name=" businessinteractionitemrelationship" type="_S3D3EGE7EemButgjVWb0qQ" association="_G3regGE8EemQKt2NqrzEJw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SUoNgGE9EemQKt2NqrzEJw" value="1"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SUr34GE9EemQKt2NqrzEJw" value="1"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_G3tTsGE8EemQKt2NqrzEJw" name="businessinteractionitem" type="_NNQYIBp9EemOGejS9lsDjA" association="_G3regGE8EemQKt2NqrzEJw">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Wmg5cGE9EemQKt2NqrzEJw"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_WmxYIGE9EemQKt2NqrzEJw" value="*"/>
          </ownedEnd>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_kM4s8BnKEemlxOdMFpUVvQ" name="Diagrams">
        <ownedComment xmi:type="uml:Comment" xmi:id="_1p5QIFe0EemOS57QqWJZ3A">
          <body>PolicyEvent is part of another effort, and is NOT agreed to at this time.</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="__IXVsFe0EemOS57QqWJZ3A">
          <body>LicenseAgreement is part of another contribution and is NOT agreed to at this time.</body>
        </ownedComment>
        <ownedComment xmi:type="uml:Comment" xmi:id="_JXPfoH10EemcG-PZNzdV9w">
          <body>ServiceOrder and VesEvent are part of other contributions, and have already been accepted.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_mU1Q4BnKEemlxOdMFpUVvQ" name="ObjectClasses">
        <packagedElement xmi:type="uml:Class" xmi:id="_z6bHYBnLEemlxOdMFpUVvQ" name="Agreement">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iAMxIFcOEemLJovD_F1O1A" annotatedElement="_z6bHYBnLEemlxOdMFpUVvQ">
            <body>A type of BusinessInteraction that represents a contract or arrangement, either written or verbal and sometimes enforceable by law.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_JT-7QEdFEemetJs_SolH_g" general="__F4vsBnKEemlxOdMFpUVvQ"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_URSToFcaEemLJovD_F1O1A" name="documentNumber">
            <ownedComment xmi:type="uml:Comment" xmi:id="_cwk0IFcaEemLJovD_F1O1A" annotatedElement="_URSToFcaEemLJovD_F1O1A">
              <body>A reference number assigned to an Agreement that follows a prescribed numbering system.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_f6Gw4FcaEemLJovD_F1O1A" name="statementOfIntent">
            <ownedComment xmi:type="uml:Comment" xmi:id="_mIcicFcaEemLJovD_F1O1A" annotatedElement="_f6Gw4FcaEemLJovD_F1O1A">
              <body>An overview and goals of the Agreement.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="__F4vsBnKEemlxOdMFpUVvQ" name="BusinessInteraction" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_IIT0YBp5EemOGejS9lsDjA" annotatedElement="__F4vsBnKEemlxOdMFpUVvQ">
            <body>A BusinessInteraction is an arrangement, contract, communication or joint activity between one or more PartyRoles, ResourceRoles, or CustomerAccounts. A BusinessInteraction may consist of one or more BusinessInteractionItems. A BusinessInteractionItem may refer to a Product, Service, Resource, or one of their specifications. A BusinessInteraction is further defined by one or more Places. One BusinessInteraction may reference another BusinessInteraction and one BusinessInteractionItem may reference another BusinessInteractionItem on the same or different BusinessInteraction. Types of BusinessInteractions include : Requests, Responses, Notifications, and Agreements.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_utCzUDX1EemvTc8tEY2xig" general="_eCjlEOLJEeiKy5JVrA0UGA"/>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_n-rCoBpxEemOGejS9lsDjA" name="StartDate" type="_KwZPMP8VEeiZ-fXSiUXhdA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_QN6CgBp5EemOGejS9lsDjA" annotatedElement="_n-rCoBpxEemOGejS9lsDjA">
              <body>Date interaction initiated</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_phb14BpxEemOGejS9lsDjA" name="endDate" type="_KwZPMP8VEeiZ-fXSiUXhdA">
            <ownedComment xmi:type="uml:Comment" xmi:id="_SuvAgBp5EemOGejS9lsDjA" annotatedElement="_phb14BpxEemOGejS9lsDjA">
              <body>The date on which an interaction is closed or completed.</body>
            </ownedComment>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_tRRrEBp5EemOGejS9lsDjA" name="Status">
            <ownedComment xmi:type="uml:Comment" xmi:id="_3hVloBp5EemOGejS9lsDjA" annotatedElement="_tRRrEBp5EemOGejS9lsDjA">
              <body>The current condition of an interaction, such as open, in research, closed, and so forth</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_tZIF8EqREemOLdIUx_ad5Q"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_tZNlgEqREemOLdIUx_ad5Q" value="1"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_NNQYIBp9EemOGejS9lsDjA" name="BusinessInteractionItem" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_SKxeoFcQEemLJovD_F1O1A" annotatedElement="_NNQYIBp9EemOGejS9lsDjA">
            <body>The purpose for the BusinessInteraction expressed in terms of a ProductSpecification, ProductOffering, ServiceSpecification or ResourceSpecification or may refer to a Product, Service, or Resource.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_XUmQcFcWEemLJovD_F1O1A" name="quantity">
            <ownedComment xmi:type="uml:Comment" xmi:id="_lBuu0FcWEemLJovD_F1O1A" annotatedElement="_XUmQcFcWEemLJovD_F1O1A">
              <body>Quantity of an interaction item involved in an interaction.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_Z1QPUFcWEemLJovD_F1O1A" name="action">
            <ownedComment xmi:type="uml:Comment" xmi:id="_2DV1sFcWEemLJovD_F1O1A" annotatedElement="_Z1QPUFcWEemLJovD_F1O1A">
              <body>The action to take for an InteractionItem, such as add, change, remove.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_UlJoMBp8EemOGejS9lsDjA" name="BusinessInteractionSpec">
          <ownedComment xmi:type="uml:Comment" xmi:id="_KQEHUFcPEemLJovD_F1O1A" annotatedElement="_UlJoMBp8EemOGejS9lsDjA">
            <body>The invariant characteristics (attributes in the business view, and methods, constraints, relationships, and behavior in the system view) and behavior of a BusinessInteraction. This is done by optionally defining a set of BusinessInteractionSpecItems, each of which aggregates one or more other types of Specifications. This helps to ensure that different BusinessInteractions have the same basic characteristics and behavior by deriving them from the same BusinessInteractionSpec.</body>
          </ownedComment>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_toYcIBp8EemOGejS9lsDjA" name="BusinessInteractionVersion">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MoeTsFcQEemLJovD_F1O1A" annotatedElement="_toYcIBp8EemOGejS9lsDjA">
            <body>Version of the business interaction.</body>
          </ownedComment>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_4vw1QDqyEemOl5OHBoqS_w" name="Request" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WnKRwFcNEemLJovD_F1O1A" annotatedElement="_4vw1QDqyEemOl5OHBoqS_w">
            <body>The act of asking that something be done that typically involves a Response. Request is a type of Business Interaction.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_Lv3H0EdFEemetJs_SolH_g" general="__F4vsBnKEemlxOdMFpUVvQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_8fYhoDqyEemOl5OHBoqS_w" name="Notification" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_im9hEFcMEemLJovD_F1O1A" annotatedElement="_8fYhoDqyEemOl5OHBoqS_w">
            <body>A communication that informs about something that has or will happen. A Notification is typically one-sided, in that no Response is expected. A Notification can be created as the result of a Request; for example, a Trouble Report may result in Notifications being sent to affected Parties. A Notification is a type of Business Interaction.</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_DtbGIEdrEemxfq65Xb2oRg" general="__F4vsBnKEemlxOdMFpUVvQ"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_2HUMUDqyEemOl5OHBoqS_w" name="Response" isAbstract="true">
          <ownedComment xmi:type="uml:Comment" xmi:id="_bkK-UFcNEemLJovD_F1O1A" annotatedElement="_2HUMUDqyEemOl5OHBoqS_w">
            <body>A reply to a Request</body>
          </ownedComment>
          <generalization xmi:type="uml:Generalization" xmi:id="_aERBkEdFEemTDOF2GVSrTg" general="__F4vsBnKEemlxOdMFpUVvQ"/>
          <nestedClassifier xmi:type="uml:DataType" xmi:id="_4VzdIDqyEemOl5OHBoqS_w" name="DataType1"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_eV_i4GEXEemButgjVWb0qQ" name="BusinessInteractionRelationship">
          <ownedComment xmi:type="uml:Comment" xmi:id="_yK1CgGEbEemButgjVWb0qQ" annotatedElement="_eV_i4GEXEemButgjVWb0qQ">
            <body>An association between two Interactions. For example, a Notification sent to customers affected by a problem contained on a Trouble Report; a response to a request, an agreement and the interactions that led up to the agreement.</body>
          </ownedComment>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_BKA7cGEYEemButgjVWb0qQ" name="type">
            <ownedComment xmi:type="uml:Comment" xmi:id="_PZsGMGEYEemButgjVWb0qQ" annotatedElement="_BKA7cGEYEemButgjVWb0qQ">
              <body>A categorization of the relationship, such as bulk, parent/child, and so forth.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_CdZO4GEYEemButgjVWb0qQ" name="validFor" type="_oyf9MOwXEei7-e9MrPJW7Q">
            <ownedComment xmi:type="uml:Comment" xmi:id="_RvhVIGEYEemButgjVWb0qQ" annotatedElement="_CdZO4GEYEemButgjVWb0qQ">
              <body>Time period for which the relationship is valid</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_S3D3EGE7EemButgjVWb0qQ" name=" BusinessInteractionItemRelationship">
          <ownedAttribute xmi:type="uml:Property" xmi:id="_RCr58GE8EemQKt2NqrzEJw" name="type">
            <ownedComment xmi:type="uml:Comment" xmi:id="_g5gosGE8EemQKt2NqrzEJw" annotatedElement="_RCr58GE8EemQKt2NqrzEJw">
              <body>The type of relationship such as contains, relies on.</body>
            </ownedComment>
            <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          </ownedAttribute>
          <ownedAttribute xmi:type="uml:Property" xmi:id="_VmVEQGE8EemQKt2NqrzEJw" name="validFor" type="_oyf9MOwXEei7-e9MrPJW7Q">
            <ownedComment xmi:type="uml:Comment" xmi:id="_r4_1EGE8EemQKt2NqrzEJw" annotatedElement="_VmVEQGE8EemQKt2NqrzEJw">
              <body>Time period for which the relationship is valid</body>
            </ownedComment>
          </ownedAttribute>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_s8dsMBnKEemlxOdMFpUVvQ" name="TypeDefinitions"/>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_XbW1gDX1EemvTc8tEY2xig" name="Location">
      <packagedElement xmi:type="uml:Class" xmi:id="_Q8qb0CYzEemRA_CB-n5OfQ" name="Place">
        <generalization xmi:type="uml:Generalization" xmi:id="_UVWO4CYzEemRA_CB-n5OfQ" general="_eCjlEOLJEeiKy5JVrA0UGA"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_QfkasCY0EemRA_CB-n5OfQ" name="validFor" type="_oyf9MOwXEei7-e9MrPJW7Q"/>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_KA1GwDxbEemSHu2qGsweWg" name="Configuration">
      <packagedElement xmi:type="uml:Package" xmi:id="_Nr6RYDxbEemSHu2qGsweWg" name="Diagrams">
        <packagedElement xmi:type="uml:Class" xmi:id="_e2_dUDxbEemSHu2qGsweWg" name="ConfigurationSpecification"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_iaIz8DxbEemSHu2qGsweWg" name="ConfigurationInstance"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_mOHb4DxbEemSHu2qGsweWg" name="ServiceConfigurationDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_WtYnADxdEemSHu2qGsweWg" general="_e2_dUDxbEemSHu2qGsweWg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_upuWQDxbEemSHu2qGsweWg" name="ResourceConfigurationDescriptor">
          <generalization xmi:type="uml:Generalization" xmi:id="_cJwJEDxdEemSHu2qGsweWg" general="_e2_dUDxbEemSHu2qGsweWg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_yfwzsDxbEemSHu2qGsweWg" name="ServiceConfigurationInstance">
          <generalization xmi:type="uml:Generalization" xmi:id="_X0dj0DxdEemSHu2qGsweWg" general="_iaIz8DxbEemSHu2qGsweWg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_3gr6cDxcEemSHu2qGsweWg" name="ResourceConfigurationInstance">
          <generalization xmi:type="uml:Generalization" xmi:id="_YtmyUDxdEemSHu2qGsweWg" general="_iaIz8DxbEemSHu2qGsweWg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Class" xmi:id="_LLc04DxdEemSHu2qGsweWg" name="ConfigSpecRelationship"/>
        <packagedElement xmi:type="uml:Class" xmi:id="_OKVn4DxdEemSHu2qGsweWg" name="ConfigRelationship"/>
        <packagedElement xmi:type="uml:Association" xmi:id="_SGD2kDxdEemSHu2qGsweWg" memberEnd="_SGEdojxdEemSHu2qGsweWg _SGFrwDxdEemSHu2qGsweWg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_SGEdoDxdEemSHu2qGsweWg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_SGEdoTxdEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_SGEdojxdEemSHu2qGsweWg" name="configrelationship" type="_iaIz8DxbEemSHu2qGsweWg" association="_SGD2kDxdEemSHu2qGsweWg"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_SGFrwDxdEemSHu2qGsweWg" name="configspecrelationship" type="_e2_dUDxbEemSHu2qGsweWg" association="_SGD2kDxdEemSHu2qGsweWg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_TMDOQDxdEemSHu2qGsweWg" name="ConfigSpecReferences" memberEnd="_TMD1UjxdEemSHu2qGsweWg _TMFDcDxdEemSHu2qGsweWg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_TMD1UDxdEemSHu2qGsweWg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_TMD1UTxdEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_TMD1UjxdEemSHu2qGsweWg" name="configurationspecification" type="_e2_dUDxbEemSHu2qGsweWg" association="_TMDOQDxdEemSHu2qGsweWg"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_TMFDcDxdEemSHu2qGsweWg" name="configspecrelationship" type="_LLc04DxdEemSHu2qGsweWg" association="_TMDOQDxdEemSHu2qGsweWg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_asMwgDxeEemSHu2qGsweWg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_asPz0DxeEemSHu2qGsweWg" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_T4T3UDxdEemSHu2qGsweWg" name="ConfigSpecReferencedBy" memberEnd="_T4UeYjxdEemSHu2qGsweWg _T4VsgDxdEemSHu2qGsweWg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_T4UeYDxdEemSHu2qGsweWg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_T4UeYTxdEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_T4UeYjxdEemSHu2qGsweWg" name="configurationspecification" type="_e2_dUDxbEemSHu2qGsweWg" association="_T4T3UDxdEemSHu2qGsweWg"/>
          <ownedEnd xmi:type="uml:Property" xmi:id="_T4VsgDxdEemSHu2qGsweWg" name="configspecrelationship" type="_LLc04DxdEemSHu2qGsweWg" association="_T4T3UDxdEemSHu2qGsweWg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_cqUDADxeEemSHu2qGsweWg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_cqWfQDxeEemSHu2qGsweWg" value="*"/>
          </ownedEnd>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_itTVoDxdEemSHu2qGsweWg" name="ConfigReferences" memberEnd="_itUjwDxdEemSHu2qGsweWg _itVx4DxdEemSHu2qGsweWg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_itT8sDxdEemSHu2qGsweWg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_itT8sTxdEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_itUjwDxdEemSHu2qGsweWg" name="configrelationship" type="_OKVn4DxdEemSHu2qGsweWg" association="_itTVoDxdEemSHu2qGsweWg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_e5kI0DxeEemSHu2qGsweWg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_e5mlEDxeEemSHu2qGsweWg" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_itVx4DxdEemSHu2qGsweWg" name="configurationinstance" type="_iaIz8DxbEemSHu2qGsweWg" association="_itTVoDxdEemSHu2qGsweWg"/>
        </packagedElement>
        <packagedElement xmi:type="uml:Association" xmi:id="_jaImcDxdEemSHu2qGsweWg" name="ConfigReferencedBy" memberEnd="_jaJNgjxdEemSHu2qGsweWg _jaJ0kDxdEemSHu2qGsweWg">
          <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_jaJNgDxdEemSHu2qGsweWg" source="org.eclipse.papyrus">
            <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_jaJNgTxdEemSHu2qGsweWg" key="nature" value="UML_Nature"/>
          </eAnnotations>
          <ownedEnd xmi:type="uml:Property" xmi:id="_jaJNgjxdEemSHu2qGsweWg" name="configrelationship" type="_OKVn4DxdEemSHu2qGsweWg" association="_jaImcDxdEemSHu2qGsweWg">
            <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_gKZekDxeEemSHu2qGsweWg"/>
            <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_gKch4DxeEemSHu2qGsweWg" value="*"/>
          </ownedEnd>
          <ownedEnd xmi:type="uml:Property" xmi:id="_jaJ0kDxdEemSHu2qGsweWg" name="configurationinstance" type="_iaIz8DxbEemSHu2qGsweWg" association="_jaImcDxdEemSHu2qGsweWg"/>
        </packagedElement>
      </packagedElement>
      <packagedElement xmi:type="uml:Package" xmi:id="_UCOTMDxbEemSHu2qGsweWg" name="ObjectClasses"/>
      <packagedElement xmi:type="uml:Package" xmi:id="_Xi8A4DxbEemSHu2qGsweWg" name="TypeDefinitions"/>
    </packagedElement>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_HyMlMKVvEeikF6xsfT18UA">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_BOcccDksEemjyLkBMGZA1g" source="PapyrusVersion">
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BOcccTksEemjyLkBMGZA1g" key="Version" value="0.2.15"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BOcccjksEemjyLkBMGZA1g" key="Comment" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BOccczksEemjyLkBMGZA1g" key="Copyright" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BOccdDksEemjyLkBMGZA1g" key="Date" value="2019-02-25"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BOccdTksEemjyLkBMGZA1g" key="Author" value=""/>
      </eAnnotations>
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_HyRdsKVvEeikF6xsfT18UA" 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="_Y8al8P2JEeisxOMTY1eUug">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Y8fecP2JEeisxOMTY1eUug" 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:OpenModelClass xmi:id="_Tw8kwD2pEeiu6I5JfRTxxQ" base_Class="_Tw79sD2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tw9y4D2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79sj2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tw-Z8D2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79tD2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tw-Z8j2pEeiu6I5JfRTxxQ" base_StructuralFeature="_Tw79uj2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_P-rlUD2vEeiu6I5JfRTxxQ" base_StructuralFeature="_P-qXMj2vEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_P-szcD2vEeiu6I5JfRTxxQ" base_StructuralFeature="_P-qXND2vEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_P-tagD2vEeiu6I5JfRTxxQ" base_StructuralFeature="_P-qXNj2vEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Tw52MES0EeiVGPeZpaYNtQ" base_Class="_Tw5PIES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_il0cAUS0EeiVGPeZpaYNtQ" base_Class="_il0cAES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vV3AAES0EeiVGPeZpaYNtQ" base_StructuralFeature="_vV1x4kS0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vWaZoES0EeiVGPeZpaYNtQ" base_StructuralFeature="_vWZykES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_8na8sES0EeiVGPeZpaYNtQ" base_Class="_8naVoES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H861UES1EeiVGPeZpaYNtQ" base_StructuralFeature="_H85nMkS1EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H9A78US1EeiVGPeZpaYNtQ" base_StructuralFeature="_H9AU4US1EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_PmI1oH7uEeifJIHxnlj6Cg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_PmIOkH7uEeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DkIzon7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_DkIzoH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_D9KXoX7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_D9JwkH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EU9zon7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_EU9zoH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E-nNkn7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_E-nNkH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FVmxQX7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FVmKMH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GtETcX7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_GtDsYH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HT8GMH7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_HT7fIH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H15jwn7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_H15jwH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IPK_Yn7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_IPK_YH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Inn7on7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Inn7oH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JDjCon7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JDjCoH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JfMc0n7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JfMc0H7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J8PlMn7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_J8PlMH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KV_h8n7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KV_h8H7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PAdJIH8DEeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_PAciEH8DEeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U-BlUIEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_U98FwIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YE52sIEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YE4okIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YnPuwIEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YnPHsIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bAfeEIEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_bAe3AIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dJJMoYEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dJIlkIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fs6w8oEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_fs6w8IEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gW1QoIEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_gW0pkIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h9cCEIEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_h9bbAIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jH-ikYEoEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jH97gIEoEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rEkwQIEpEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rEkJMIEpEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0AyfsoFdEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_0AyfsIFdEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0tIBQoFdEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_0tIBQIFdEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CITLkIOQEeivtfz_CvwDeA" base_StructuralFeature="_CISkgIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DYK4AYOQEeivtfz_CvwDeA" base_StructuralFeature="_DYK4AIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ECr0oYOQEeivtfz_CvwDeA" base_StructuralFeature="_ECr0oIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Fpc-IYOQEeivtfz_CvwDeA" base_StructuralFeature="_Fpc-IIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KS51gYOQEeivtfz_CvwDeA" base_StructuralFeature="_KS51gIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LMkBYYOQEeivtfz_CvwDeA" base_StructuralFeature="_LMkBYIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LuBIoIOQEeivtfz_CvwDeA" base_StructuralFeature="_LuAhkIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NRP18YOQEeivtfz_CvwDeA" base_StructuralFeature="_NRP18IOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OGol0IOQEeivtfz_CvwDeA" base_StructuralFeature="_OGn-wIOQEeivtfz_CvwDeA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fvsIEIUNEeiRGZJrXkgR0w" base_StructuralFeature="_fvq58IUNEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lXOYUIUNEeiRGZJrXkgR0w" base_StructuralFeature="_lXNxQIUNEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mgbcEYUNEeiRGZJrXkgR0w" base_StructuralFeature="_mgbcEIUNEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H6eUgIUPEeiRGZJrXkgR0w" base_StructuralFeature="_H6dtcIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IZd9oIUPEeiRGZJrXkgR0w" base_StructuralFeature="_IZdWkIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_I4dmwIUPEeiRGZJrXkgR0w" base_StructuralFeature="_I4c_sIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JZP_oIUPEeiRGZJrXkgR0w" base_StructuralFeature="_JZPYkIUPEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gQaSsYUREeiRGZJrXkgR0w" base_StructuralFeature="_gQaSsIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g3C04YUREeiRGZJrXkgR0w" base_StructuralFeature="_g3C04IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_haSE0YUREeiRGZJrXkgR0w" base_StructuralFeature="_haSE0IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h5E5oIUREeiRGZJrXkgR0w" base_StructuralFeature="_h5ESkIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_idmjAYUREeiRGZJrXkgR0w" base_StructuralFeature="_idmjAIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i5ktUIUREeiRGZJrXkgR0w" base_StructuralFeature="_i5kGQIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jazyIYUREeiRGZJrXkgR0w" base_StructuralFeature="_jazyIIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j7onQYUREeiRGZJrXkgR0w" base_StructuralFeature="_j7onQIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ljD4EYUREeiRGZJrXkgR0w" base_StructuralFeature="_ljD4EIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l-B80YUREeiRGZJrXkgR0w" base_StructuralFeature="_l-B80IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mYlK0YUREeiRGZJrXkgR0w" base_StructuralFeature="_mYlK0IUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mw0rsYUREeiRGZJrXkgR0w" base_StructuralFeature="_mw0rsIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nJ1ooIUREeiRGZJrXkgR0w" base_StructuralFeature="_nJ1BkIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n42DsIUREeiRGZJrXkgR0w" base_StructuralFeature="_n41coIUREeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fFI88YUSEeiRGZJrXkgR0w" base_StructuralFeature="_fFI88IUSEeiRGZJrXkgR0w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MAG38IbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_MAGQ4IbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NvX2IYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_NvX2IIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QoSkAYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_QoSkAIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_S7iZAYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_S7iZAIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TdtR8YbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_TdtR8IbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UCG_gIbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_UCGYcIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VASfAYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_VASfAIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ViLEEYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ViLEEIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WBJfEYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_WBJfEIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WZyBgYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_WZyBgIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W5dAEYbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_W5dAEIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XgoU0IbiEei-x_BD9U-ssQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_XgntwIbiEei-x_BD9U-ssQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ppQ7gIkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ppPGUIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qoYPIYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qoXoEIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wNHqEYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wNHDAIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w4cfAYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_w4b38IkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yfCpYYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_yfCCUIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1LnkYIkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1Lm9UIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2RzwYokOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_2RzwYIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3Y4GIokOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_3Y4GIIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4OwlQokOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_4OwlQIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5DemwYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5Dd_sIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7AlzsokOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7AlzsIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8ZL-UIkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8ZLXQIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9A--IokOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9A--IIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9tdpoYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9tdCkIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-TDqAYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-TDC8IkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__B-lgokOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#__B-lgIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__zaCcYkOEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#__zZbYIkOEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EC_oUYkPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_EC_BQIkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FCgkkokPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FCgkkIkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FwUFwIkPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FwTesIkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GioTgIkPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_GinscIkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IbFp8YkPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_IbFC4IkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JLOtcokPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JLOtcIkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jxwh8IkPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Jxv64IkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KVHGookPEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KVHGoIkPEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Dy0FAokUEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Dy0FAIkUEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9RzkMIkVEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9Ry9IIkVEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-CmH8okVEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-CmH8IkVEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-u83oIkVEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-u8QkIkVEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__9iKoYkVEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#__9hjkIkVEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AkUd0YkWEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_AkT2wIkWEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Bt4t8okWEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Bt4t8IkWEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Caf8UIkWEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_CafVQIkWEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DCfJYokWEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_DCfJYIkWEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zlPtYIkXEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zlPGUIkXEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0ywCUIkXEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_0yvbQIkXEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1kwHAYkXEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1kvf8IkXEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_579-4IkXEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_579X0IkXEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W66acYkYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_W65zYIkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YYWo0okYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YYWo0IkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZJNeAokYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ZJNeAIkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aSI08okYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_aSI08IkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gsTcAokYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_gsTcAIkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hUHp8YkYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hUHC4IkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h2ohIYkYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_h2n6EIkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_i0f3kIkYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_i0fQgIkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jXf28IkYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jXfP4IkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j37DcIkYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_j36cYIkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kYzi8okYEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_kYzi8IkYEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tfINQYkjEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_tfHmMIkjEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pTjSwoklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pTjSwIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qCL6YoklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qCL6YIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qucjcIklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qub8YIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ra5ZwoklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ra5ZwIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sFP-UoklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_sFP-UIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uF_uEoklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_uF_uEIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_u2AOsYklEeiddpojVtQ0Hg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_u1_noIklEeiddpojVtQ0Hg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5wlcwImwEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5wjnkImwEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7sPRIYmwEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7sOqEImwEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8fDOIImwEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8fCnEImwEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9NdMQImwEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9NclMImwEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-Wc0oomwEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-Wc0oImwEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__923UImwEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#__92QQImwEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AqOOEomxEeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_AqOOEImxEeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hj_HIom2EeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hj_HIIm2EeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_iyBnkom2EeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_iyBnkIm2EeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j-VCoIm2EeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_j-UbkIm2EeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pOy2som2EeiOe-BKGdv_Yg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pOy2sIm2EeiOe-BKGdv_Yg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_69GDMJQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_69Dm8JQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8IUgMJQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8IT5IJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8qkRoZQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8qjqkJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9J88UJQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9J8VQJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9pafgJQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9pZ4cJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-GrDQpQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-GrDQJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-qdFwpQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-qdFwJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__NVwYJQkEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#__NT7MJQkEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Bs8mYJQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Bs7_UJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Ez0QsJQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_EzzpoJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FUQEQZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FUPdMJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FyTSMJQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FySrIJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GRRGIZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_GRQfEJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HiJfMZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_HiI4IJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IBHTIpQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_IBHTIJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IdCaIpQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_IdCaIJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_I9VDwpQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_I9VDwJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JZFysJQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JZFLoJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J1YGEpQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_J1YGEJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KsYmkpQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KsYmkJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L2fCMZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_L2ebIJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Nh-TopQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Nh-ToJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ORvjsZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ORu8oJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PJkjkpQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_PJkjkJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PwKpgZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_PwKCcJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Qpe3IZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_QpeQEJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_S66HMZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_S65gIJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tbx_opQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Tbx_oJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UQxG4pQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_UQxG4JQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UsgAoZQlEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_UsfZkJQlEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5dI6EJQpEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5dITAJQpEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6EHagZQpEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6EGzcJQpEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sl3TYpQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_sl3TYJQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tnGG4pQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_tnGG4JQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vThMcpQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_vThMcJQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vxMm8JQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_vxL_4JQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wyu8cpQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wyu8cJQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xhv-kpQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xhv-kJQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yW7TEJQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_yW6sAJQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_y4u_opQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_y4u_oJQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zZIW8pQuEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zZIW8JQuEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NyfTgJQzEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_NyescJQzEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OcpDwpQzEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_OcpDwJQzEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_V7c6gpQ6Eei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_V7c6gJQ6Eei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WgYMgZQ6Eei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_WgXlcJQ6Eei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XKReEZQ6Eei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_XKQ3AJQ6Eei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XxkHkpQ6Eei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_XxkHkJQ6Eei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w1_G8JQ9Eei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_w1-f4JQ9Eei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_D0pB8JRBEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_D0oa4JRBEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ErzTcpRBEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ErzTcJRBEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FY300pRBEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FY300JRBEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GLY24pRBEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_GLY24JRBEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hv24gZRBEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hv2RcJRBEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ikuD8ZRBEei6kI-JPNdeuw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_iktc4JRBEei6kI-JPNdeuw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LZpyoJTdEeiYXO5wr78TUw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_LZpLkJTdEeiYXO5wr78TUw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FfjO8JaOEeiGg_moIHe9Sw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FfgysJaOEeiGg_moIHe9Sw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HGafEJaOEeiGg_moIHe9Sw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_HGZ4AJaOEeiGg_moIHe9Sw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H1fLkZaOEeiGg_moIHe9Sw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_H1ekgJaOEeiGg_moIHe9Sw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JL2hkJaOEeiGg_moIHe9Sw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JL16gJaOEeiGg_moIHe9Sw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xzK_YZaXEeiGg_moIHe9Sw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xzKYUJaXEeiGg_moIHe9Sw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HR8fAJahEeiGg_moIHe9Sw" base_StructuralFeature="_HR738JahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J6eAcpahEeiGg_moIHe9Sw" base_StructuralFeature="_J6eAcJahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KplJMZahEeiGg_moIHe9Sw" base_StructuralFeature="_KpkiIJahEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wTZ74Zc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wTZ74Jc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w5-zsJc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_w5-MoJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xjhf8Jc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xjg44Jc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yI8hMJc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_yI76IJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1YuP4Zc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1YuP4Jc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_19gX8Zc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_19gX8Jc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2ocyYJc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_2ocLUJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3mxb0Zc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_3mxb0Jc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4D4OkZc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_4D4OkJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4lixMZc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_4lixMJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5BEPkZc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5BEPkJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7YTzwZc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7YTzwJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7_pgkJc-Eeis0eUbsDSw0w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7_o5gJc-Eeis0eUbsDSw0w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PWBS0JdUEei-sOl6ywWHlg" base_StructuralFeature="_PV-2kJdUEei-sOl6ywWHlg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VL2WIppnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_VL2WIJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VsHKkZpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_VsGjgJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WIHKEZpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_WIGjAJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Wj_NwZpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Wj-msJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W-fYcJpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_W-exYJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XXhjgJpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_XXg8cJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YrKVoppnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YrKVoJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZW72gZpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ZW7PcJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZzjhEJpnEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Zzi6AJpnEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L72DAJpqEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_L71b8JpqEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_M9BMIJpqEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_M9AlEJpqEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OD8_AppqEeidy9iGT_F5-w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_OD8_AJpqEeidy9iGT_F5-w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JYaBcJzREeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JYYzUJzREeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Knu7UZzREeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KnuUQJzREeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Lbc3QZzREeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_LbcQMJzREeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MP-EcJzREeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_MP9dYJzREeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NBoK4JzREeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_NBnj0JzREeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fX2CUZzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_fX1bQJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_f54_cpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_f54_cJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gaDtQJzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_gaDGMJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hwG6MpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hwG6MJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_iWVzwpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_iWVzwJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jV7ogJzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jV7BcJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kgWNMpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_kgWNMJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lKBcUpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_lKBcUJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lxd20ZzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_lxdPwJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mYn9cJzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_mYnWYJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nBD2cZzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_nBDPYJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nhiGQJzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_nhhfMJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oCtgspzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_oCtgsJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oii3UJzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_oiiQQJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pFelQpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pFelQJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pucpwpzTEeiLvPKMh61-Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pucpwJzTEeiLvPKMh61-Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RRrjMKJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_RRq8IKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TGCcwKJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_TGB1sKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Trf6QaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Trf6QKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UekV8aJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_UekV8KJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VXKx4aJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_VXKx4KJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W9q1oaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_W9q1oKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YAFU4KJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YAEt0KJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Yr9jcaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Yr9jcKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZXlTUaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ZXlTUKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aM6_4KJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_aM6Y0KJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_a-5PYaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_a-5PYKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cMRogaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_cMRogKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dDI_EaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dDI_EKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dwvr8aJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dwvr8KJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_en-O4aJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_en-O4KJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fZgZgaJVEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_fZgZgKJVEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4wuD8aJWEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_4wuD8KJWEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5x4mAaJWEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5x4mAKJWEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_61QHgaJWEeibfLkXoC-lBg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_61QHgKJWEeibfLkXoC-lBg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IamB8KVvEeikF6xsfT18UA" base_StructuralFeature="_N61nIDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IanQEKVvEeikF6xsfT18UA" base_StructuralFeature="_O2y5EDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IaoeMKVvEeikF6xsfT18UA" base_StructuralFeature="_-b8GcDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IapsUKVvEeikF6xsfT18UA" base_StructuralFeature="__BqCoDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Iaq6cKVvEeikF6xsfT18UA" base_StructuralFeature="__o0JQDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IasIkKVvEeikF6xsfT18UA" base_StructuralFeature="_Ag8rIDdQEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IasvoKVvEeikF6xsfT18UA" base_StructuralFeature="_ifaxMDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Iauk0KVvEeikF6xsfT18UA" base_StructuralFeature="_TsnHUDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Iavy8KVvEeikF6xsfT18UA" base_StructuralFeature="_W5c2wDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lby-4KZBEeily5uFlujj3Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_lbyX0KZBEeily5uFlujj3Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Preliminary xmi:id="_RXHEYKZIEeily5uFlujj3Q" base_Element="_Tw79sD2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_WB-RAKZIEeily5uFlujj3Q" base_Element="_Tw79tD2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YPresKZIEeily5uFlujj3Q" base_Element="_Tw79uj2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_bOWPQKZIEeily5uFlujj3Q" base_Element="_Tw79sj2pEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7S8mYacHEeiFp-jDq2Hw-A">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7S8mYKcHEeiFp-jDq2Hw-A"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_76Oo0KcHEeiFp-jDq2Hw-A">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_76OBwKcHEeiFp-jDq2Hw-A"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8cpZYacHEeiFp-jDq2Hw-A">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8cpZYKcHEeiFp-jDq2Hw-A"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E2dKsacNEeiFp-jDq2Hw-A">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_E2dKsKcNEeiFp-jDq2Hw-A"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FgDhUacNEeiFp-jDq2Hw-A">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FgDhUKcNEeiFp-jDq2Hw-A"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GHjmMacNEeiFp-jDq2Hw-A">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_GHjmMKcNEeiFp-jDq2Hw-A"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Preliminary xmi:id="_i11R0Ke4Eeixw5Ke5QD1pQ" base_Element="_Tw5PIES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_nyvQsKe4Eeixw5Ke5QD1pQ" base_Element="_il0cAES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_r54FMKe4Eeixw5Ke5QD1pQ" base_Element="_8naVoES0EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_2J-cAKe4Eeixw5Ke5QD1pQ" base_Class="_7pUNEDa7EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_3uaqQKe4Eeixw5Ke5QD1pQ" base_Class="_0AbUYDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_6UO18Ke4Eeixw5Ke5QD1pQ" base_Element="_7pUNEDa7EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_8jVx0Ke4Eeixw5Ke5QD1pQ" base_Element="_0AbUYDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="__h6bwKe4Eeixw5Ke5QD1pQ" base_Element="_AuYtcDkBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_BU2ZAKe5Eeixw5Ke5QD1pQ" base_Element="_vxJ9ADafEei23_xWdimG9w"/>
  <OpenModel_Profile:Preliminary xmi:id="_Gv66kKe5Eeixw5Ke5QD1pQ" base_Element="_P-qXMD2vEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_LkXhAKe5Eeixw5Ke5QD1pQ" base_Element="_oXexoD2uEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_NfABsKe5Eeixw5Ke5QD1pQ" base_Element="_YQwQ0D0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Pib5EKe5Eeixw5Ke5QD1pQ" base_Element="_8dlAoD0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_RcSWoKe5Eeixw5Ke5QD1pQ" base_Element="_8rNJgD2uEeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_TCEosKe5Eeixw5Ke5QD1pQ" base_Element="_p3EKoDm0EeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_VA9-UKe5Eeixw5Ke5QD1pQ" base_Element="_2x4t0InuEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_W4FQ8Ke5Eeixw5Ke5QD1pQ" base_Element="_ImxsgDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YkfvcKe5Eeixw5Ke5QD1pQ" base_Element="_4oResDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_alnSoKe5Eeixw5Ke5QD1pQ" base_Element="_X9TdUDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_clBloKe5Eeixw5Ke5QD1pQ" base_Element="_Dg2QIJaaEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:Preliminary xmi:id="_eMQpMKe5Eeixw5Ke5QD1pQ" base_Element="_W7iKYJaeEeiGg_moIHe9Sw"/>
  <OpenModel_Profile:Preliminary xmi:id="_fl9AAKe5Eeixw5Ke5QD1pQ" base_Element="_LsX6UDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_huR-cKe5Eeixw5Ke5QD1pQ" base_Element="_tFQGcDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_jLXAcKe5Eeixw5Ke5QD1pQ" base_Element="_7hn1IDd1EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_n2f54Ke5Eeixw5Ke5QD1pQ" base_Element="_PjIasDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_p4PvMKe5Eeixw5Ke5QD1pQ" base_Element="_2aIggDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_r0DUkKe5Eeixw5Ke5QD1pQ" base_Element="_tMoywDnJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_t0PDoKe5Eeixw5Ke5QD1pQ" base_Element="_B3kJsDnKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tp6RAbBaEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Tp6RALBaEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U9IMYbBaEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_U9IMYLBaEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Vf134LBaEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Vf1Q0LBaEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WMZb4bBaEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_WMZb4LBaEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W8ZVcLBaEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_W8YuYLBaEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jCQsUbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jCQsULBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kNgXcbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_kNgXcLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_k2tFcbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_k2tFcLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lhzQ4bBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_lhzQ4LBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nxGaAbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_nxGaALBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_olfrYbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_olfrYLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pMxGwbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pMxGwLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_p20wYLBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_p20JULBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qiY14bBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qiY14LBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rNLfUbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rNLfULBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ry8e0LBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ry73wLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tEj3sbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_tEj3sLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ueGdgbBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ueGdgLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vHIzcLBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_vHIMYLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_v0VQoLBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_v0UpkLBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wcpN0bBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wcpN0LBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xUqa8LBgEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xUpz4LBgEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hdwO0LBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hdvnwLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_klGaQbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_klGaQLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lvjbMbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_lvjbMLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nb-gwbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_nb-gwLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n57oEbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_n57oELBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ogQBMLBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ogPaILBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pClSMbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pClSMLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ppgIQbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ppgIQLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qNbUsbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qNbUsLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rIyJsbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rIyJsLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rpN9QLBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rpNWMLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tf-qkbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_tf-qkLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uKpYMbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_uKpYMLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uyhQgbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_uyhQgLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vdWWMbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_vdWWMLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xIsdsbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xIsdsLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x0GyMbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_x0GyMLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ycg2ALBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ycgO8LBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zHfFobBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zHfFoLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zxJtsbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zxJtsLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0XmpsLBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_0XmCoLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_08YxwbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_08YxwLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1l4asbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1l4asLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2PcVEbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_2PcVELBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_25DSwLBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_25CrsLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3r8IQbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_3r8IQLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6psS0LBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6prrwLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7a8wobBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7a8woLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8i-IobBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8i-IoLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9l0swbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9l0swLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-W9OwbBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-W9OwLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__XVGobBvEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#__XVGoLBvEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ATsoQbBwEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ATsoQLBwEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BZcIULBwEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_BZbhQLBwEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CWqlkbBwEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_CWqlkLBwEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DZFE0bBwEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_DZFE0LBwEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Eo2qoLBwEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Eo2DkLBwEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FvUjcLBwEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_FvT8YLBwEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cOzM8bCLEeix4eA61SHRMQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_cOzM8LCLEeix4eA61SHRMQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6cpsUbHjEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6cpsULHjEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_91w9MbHjEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_91w9MLHjEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-hW34LHjEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-hWQ0LHjEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_A67XUbHkEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_A67XULHkEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BhlHoLHkEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_BhkgkLHkEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MFvaMbH1Eeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_MFvaMLH1Eeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NroZ8LH1Eeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Nrny4LH1Eeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PTyqkbH1Eeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_PTyqkLH1Eeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_P7HJQbH1Eeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_P7HJQLH1Eeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QpWvUbH1Eeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_QpWvULH1Eeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Wx3isbIWEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Wx3isLIWEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XmCKkbIWEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_XmCKkLIWEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JRQ9EbIZEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JRQ9ELIZEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JqZOwbIZEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JqZOwLIZEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1cWysbIZEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1cWysLIZEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_14ulobIZEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_14uloLIZEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2tFawbIZEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_2tFawLIZEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RvBhobIbEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_RvBhoLIbEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_S10xobIbEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_S10xoLIbEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GcqAEbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_GcqAELIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HOH5QbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_HOH5QLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rCJ9UbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rCJ9ULIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sDMjkbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_sDMjkLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_t_9yQbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_t_9yQLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ufaHUbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ufaHULIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_v38nkbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_v38nkLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wR6mwbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wR6mwLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wt-QobIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wt-QoLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xIKSQbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xIKSQLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zKxDMbIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zKxDMLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zk7PobIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zk7PoLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_z_K7obIcEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_z_K7oLIcEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rCqW0bIgEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rCqW0LIgEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rcMRIbIgEeid-vjMcczUWA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rcMRILIgEeid-vjMcczUWA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_7T8ZoMGaEeiS695oPTRE1Q">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_7SeaAMGaEeiS695oPTRE1Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_n2NkkMWKEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_n09AUMWKEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_qX-WscWKEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_qX-WsMWKEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_25jHQcWSEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_25jHQMWSEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_53AW4cWSEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_53AW4MWSEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_7_tv0cWSEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_7_tv0MWSEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_w0GWgcWTEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_w0GWgMWTEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_zieoUcWTEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_zieoUMWTEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_1ZragcWTEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_1ZragMWTEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_2rCUsMWTEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_2rBtoMWTEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_4d4yYcWTEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_4d4yYMWTEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_7sljAcWTEeiLjtyU_R81wg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_7sljAMWTEeiLjtyU_R81wg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_IQ35IMc4EeiRs7MlzxwPhg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_IO8mgMc4EeiRs7MlzxwPhg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_4bCMYMc4EeiRs7MlzxwPhg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_4bBlUMc4EeiRs7MlzxwPhg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_oboT8cc5EeiRs7MlzxwPhg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_oboT8Mc5EeiRs7MlzxwPhg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_CugK0Mc6EeiRs7MlzxwPhg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_CufjwMc6EeiRs7MlzxwPhg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_PBhmMMc7EeiRs7MlzxwPhg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_PBg_IMc7EeiRs7MlzxwPhg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_3lgyQcc7EeiRs7MlzxwPhg">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_3lgyQMc7EeiRs7MlzxwPhg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_eh0ewMdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_ehz3sMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_tUPxQcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_tUPxQMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_t2woccdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_t2wocMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_ulsLAcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_ulsLAMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_viULUcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_viULUMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_wGTCIMdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_wGSbEMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_xJXoscdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_xJXosMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_x9SY8cdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_x9SY8MdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_zRiPEcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_zRiPEMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_0V_VscdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_0V_VsMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_1VkjYMdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_1Vj8UMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_2efTQcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_2efTQMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_4wX2UcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_4wX2UMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_5ivHYcdQEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_5ivHYMdQEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_rugTwMdWEeiNaKPf3x1gTw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_rufssMdWEeiNaKPf3x1gTw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_sGWzoEHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_4ZDVsMgEEeiEtuRgTYzSUQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BkscgsgeEeiEtuRgTYzSUQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_BkscgcgeEeiEtuRgTYzSUQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_327CUMivEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_326bQsivEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U7asQsiwEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_U7asQciwEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_THT04cixEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_THT04MixEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MpjR08iyEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_MpjR0siyEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Mpj448iyEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Mpj44siyEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uYoAEM2KEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_uYnZAM2KEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uY3Qoc2KEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_uY3QoM2KEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wwLGQ82KEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wwLGQs2KEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wwMUYc2KEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_wwMUYM2KEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zrQXUM2KEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zrPwQs2KEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zrQ-Yc2KEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zrQ-YM2KEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_daKFEM2QEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_daJeAs2QEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_daKsIc2QEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_daKsIM2QEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eb3ZsM2QEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_eb2yos2QEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eb4Aws2QEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_eb4Awc2QEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_e_hgY82QEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_e_hgYs2QEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_e_iugM2QEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_e_iHcs2QEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_qYdAIc2TEeieTchE0MWKmw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_qYdAIM2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yCabIM2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_yCZ0EM2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yjfu8c2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_yjfu8M2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zA9HAM2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zA8f8M2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zalH8c2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zalH8M2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0p73Ac2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_0p73AM2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1Gw88c2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1Gw88M2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1fbUkM2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1fatgM2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_127OkM2TEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_126ngM2TEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oHbjQM2UEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_oHa8Ms2UEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oHcKU82UEeieTchE0MWKmw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_oHcKUs2UEeieTchE0MWKmw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pjPu0c41EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pjPu0M41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pjRkAc41EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pjRkAM41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_trL0k841EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_trL0ks41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_trNCs841EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_trNCss41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vI7k8M41EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_vI694s41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vI8MA841EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_vI8MAs41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x7wR4841EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_x7wR4s41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x7xgAM41EeixI-embJ5ltQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_x7w48s41EeixI-embJ5ltQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qfShU9CbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qfShUtCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qfTvcdCbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qfTvcNCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6HygMtCbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6HygMdCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6HzHQ9CbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6HzHQtCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8GyjgdCbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8GyjgNCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8GzxotCbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8GzxodCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9i1Ds9CbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9i1DstCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9i1qw9CbEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9i1qwtCbEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pkWe4NCiEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pkV30tCiEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pkXtA9CiEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pkXtAtCiEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LWuTkNCrEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_LWtsgdCrEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LWvhsdCrEeius9GPYoVrTg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_LWvhsNCrEeius9GPYoVrTg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_ikO6oNLdEeiMg4jJCQOcCA">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_ihIjUNLdEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jc7pkNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Jc7CgNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KIbdoNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KIa2kNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_K0AKMdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_K0AKMNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bJ2XQdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_bJ2XQNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bmpA8NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_bmoZ4NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cEYF0NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_cEXewNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_c7Z0cNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_c7ZNYNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dq8bANLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dq7z8NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eEj04dLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_eEj04NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_edR24dLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_edR24NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_e4KcEdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_e4KcENLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gFWn8NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_gFWA4NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gsp4gNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_gspRcNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jZFpkdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jZFpkNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j7OtUdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_j7OtUNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mH288NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_mH2V4NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_muYKYdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_muYKYNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nQL28NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_nQLP4NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nwZoENLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_nwZBANLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oaDpEdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_oaDpENLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pj4X4NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pj3w0NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qAliANLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qAk68NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qzFV8dLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_qzFV8NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rTRR4dLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rTRR4NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ru76MNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ru7TINLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tk59UNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_tk5WQNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5ne-YdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5ne-YNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6J6WAdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6J6WANLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7YawgdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7YawgNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7w2eodLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7w2eoNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8HutkdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8HutkNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8eWd0dLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_8eWd0NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_814NAdLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_814NANLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9LwWYNLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9LvvUNLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9kauANLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_9kaG8NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-ws68NLeEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_-wsT4NLeEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AU4DcNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_AU3cYNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_A4Ca4dLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_A4Ca4NLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BPAJYNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_BO_iUNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ByDMEdLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ByDMENLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CMgTcNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_CMfsYNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Ci3lANLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Ci298NLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DICuoNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_DICHkNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DnN98NLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_DnNW4NLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ETi4cNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ETiRYNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IHsfgNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_IHr4cNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ItTG8dLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ItTG8NLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JUhfAdLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JUhfANLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KDJfkNLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KDI4gNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Kx1KgdLfEeiMg4jJCQOcCA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Kx1KgNLfEeiMg4jJCQOcCA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_eM1w4NMPEeig45NPS8-MSw">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_eM1J0NMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_jURkwNMPEeig45NPS8-MSw">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_jUQ9sNMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_otly0dMPEeig45NPS8-MSw">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_otly0NMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_trl94dMPEeig45NPS8-MSw">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_trl94NMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_vYK0cdMPEeig45NPS8-MSw">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_vYK0cNMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Hp8WQdMQEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_Hp8WQNMQEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Hp89UdMQEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_Hp89UNMQEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ix6XM9MSEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_ix6XMtMSEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ix6-QdMSEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_ix6-QNMSEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGh109MVEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_sGh10tMVEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGjD8dMVEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_sGjD8NMVEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-vBlg9MWEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_-vBlgtMWEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-vGeAdMWEeig45NPS8-MSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_-vGeANMWEeig45NPS8-MSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0YvBcNbXEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_0VWWQNbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_16ZBcNbXEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_16YaYNbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2xdMUdbXEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_2xdMUNbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3P9GMNbXEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_3P8fINbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_I-2pgdbbEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_I-2pgNbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JiN1QNbbEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_JiNOMNbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J-gvsNbbEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_J-gIoNbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KcJt8NbbEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_KcJG4NbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LAB3EdbbEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_LAB3ENbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PdPCMdbbEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_PdPCMNbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_KG2MgNcAEeitAsFAkChUcg">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_trl94NMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_NCTRANcAEeitAsFAkChUcg">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_eM1J0NMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_N-JOMNcAEeitAsFAkChUcg">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_otly0NMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_O-TqsNcAEeitAsFAkChUcg">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_vYK0cNMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_UQD4MNcAEeitAsFAkChUcg">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_jUQ9sNMPEeig45NPS8-MSw"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelClass xmi:id="_sqwFcdcAEeitAsFAkChUcg">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_sqwFcNcAEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_u-NV0dcAEeitAsFAkChUcg">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_u-NV0NcAEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yMTG0NceEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_yMSfwNceEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yMTt4tceEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_yMTt4dceEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_D7P00dcfEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_D7P00NcfEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EyRjcNcfEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_EyQ8YNcfEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FpW8cdcfEeitAsFAkChUcg">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_FpW8cNcfEeitAsFAkChUcg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_icIWANhYEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_ia0ucNhYEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_ZUdYINheEeiRnMGpBj3Tnw">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_sqwFcNcAEeitAsFAkChUcg"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_auuWsNheEeiRnMGpBj3Tnw">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_u-NV0NcAEeitAsFAkChUcg"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_09izAdhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_09izANhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1rrEUdhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_1rrEUNhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7w7LUdhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_7w7LUNhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_8nPvUNhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_8nPIQNhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9euJ4NhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_9eti0NhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-qnVQdhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_-qnVQNhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__egQUdhpEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#__egQUNhpEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6bEusNiVEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6bEHoNiVEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6bFVwNiVEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6bEus9iVEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_8GJXIdiaEeiRnMGpBj3Tnw">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_8GJXINiaEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J3IEodikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_J3IEoNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LbNtkdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_LbNtkNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L2y2UdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_L2y2UNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_M6cEodikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_M6cEoNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NZpJIdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_NZpJINikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_N06v4NikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_N06I0NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OSdAcdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_OSdAcNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OysmwdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_OysmwNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PzbD8dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_PzbD8NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QWetsdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_QWetsNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QuxR4dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_QuxR4NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RLKS8NikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_RLJr4NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RqTtENikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_RqTGANikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SUy0gdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_SUy0gNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SxKncdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_SxKncNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TJ3bUdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_TJ3bUNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Tkfh0NikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Tke6wNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UEIrMdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_UEIrMNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UennwNikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_UenAsNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U6fEYdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_U6fEYNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_X_KWUdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_X_KWUNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Yt7g0dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Yt7g0NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZOyLIdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ZOyLINikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Zz-i4dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Zz-i4NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aTrWodikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_aTrWoNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bu9o4dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_bu9o4NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cQ_-8dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_cQ_-8NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cvt7QdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_cvt7QNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dLM9YdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dLM9YNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_e9yVUdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_e9yVUNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ftCA8dikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ftCA8NikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g5WqIdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_g5WqINikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hdrfMdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hdrfMNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jBe0QdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jBe0QNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jnUsQdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_jnUsQNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_k-prkdikEeiRnMGpBj3Tnw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_k-prkNikEeiRnMGpBj3Tnw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_6KnMMdkWEei09Y1bp3mjwA">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_6KnMMNkWEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7OsC4dkXEei09Y1bp3mjwA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7OsC4NkXEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_7Osp89kXEei09Y1bp3mjwA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_7Osp8tkXEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4IiU09kYEei09Y1bp3mjwA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_4IiU0tkYEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4Iji8NkYEei09Y1bp3mjwA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_4Ii74tkYEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_awKWg9khEei09Y1bp3mjwA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_awKWgtkhEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_awK9k9khEei09Y1bp3mjwA">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_awK9ktkhEei09Y1bp3mjwA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2KkY8dxdEei0G_d67y10Rg" base_StructuralFeature="_2KkY8NxdEei0G_d67y10Rg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3H0rYdxdEei0G_d67y10Rg" base_StructuralFeature="_3H0rYNxdEei0G_d67y10Rg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3fMCgNxdEei0G_d67y10Rg" base_StructuralFeature="_3fLbcNxdEei0G_d67y10Rg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4SOpAdxdEei0G_d67y10Rg" base_StructuralFeature="_4SOpANxdEei0G_d67y10Rg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4o8f4dxdEei0G_d67y10Rg" base_StructuralFeature="_4o8f4NxdEei0G_d67y10Rg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_rmDpoNxjEei0G_d67y10Rg" base_Class="_rmDCkNxjEei0G_d67y10Rg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_AtzxUN0mEeiRzJu73dYz2w" base_Class="_AtzKQN0mEeiRzJu73dYz2w"/>
  <OpenModel_Profile:Experimental xmi:id="_jrteoN0mEeiRzJu73dYz2w" base_Element="_AtzKQN0mEeiRzJu73dYz2w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_sHXgQEHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_T5-uYN3uEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGZP4EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_sNzeod3uEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sE1wsEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_sN0Fsd3uEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGc6QEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_43lCk93uEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sE3l4EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_43qiIN3uEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_sHTO0EHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_D_LXMN3xEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sEkq8EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_Sj2FEt3yEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sEgZgEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_Sj3TMN3yEei-jeeHUjfpLA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_yyN_EeEpEeidEfhiAaiFzQ" base_Class="_yyN_EOEpEeidEfhiAaiFzQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_eCkzMOLJEeiKy5JVrA0UGA" base_Class="_eCjlEOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vi4oQeLJEeiKy5JVrA0UGA" base_StructuralFeature="_vi4oQOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wEIUIOLJEeiKy5JVrA0UGA" base_StructuralFeature="_wEHtEOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wj9DseLJEeiKy5JVrA0UGA" base_StructuralFeature="_wj9DsOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Td26ceLNEeiKy5JVrA0UGA" base_StructuralFeature="_Td26cOLNEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_T6QikeLNEeiKy5JVrA0UGA" base_StructuralFeature="_T6QikOLNEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_TsknYOQ3Eei2Ub3VuxG4ag" base_Class="_TpqdUOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_WCEfIeQ3Eei2Ub3VuxG4ag" base_Class="_WCEfIOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ZLtwoOQ3Eei2Ub3VuxG4ag" base_Class="_ZLtJkOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_cbT5IeQ3Eei2Ub3VuxG4ag" base_Class="_cbT5IOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_fSRfMOQ3Eei2Ub3VuxG4ag" base_Class="_fSQ4IOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ucHMIeQ3Eei2Ub3VuxG4ag" base_Class="_ucHMIOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_w3xrYeQ5Eei2Ub3VuxG4ag" base_Class="_w3xrYOQ5Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_4QQU0eQ5Eei2Ub3VuxG4ag" base_Class="_4QQU0OQ5Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_9jP4ceQ5Eei2Ub3VuxG4ag" base_Class="_9jP4cOQ5Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jOYoEOQ6Eei2Ub3VuxG4ag" base_StructuralFeature="_jOYBAOQ6Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jOadQeQ6Eei2Ub3VuxG4ag" base_StructuralFeature="_jOadQOQ6Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mDoW4-Q6Eei2Ub3VuxG4ag" base_StructuralFeature="_mDoW4uQ6Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mDo98eQ6Eei2Ub3VuxG4ag" base_StructuralFeature="_mDo98OQ6Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_2_GuoeQ8Eei2Ub3VuxG4ag" base_Class="_2_GuoOQ8Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_SRIVYeQ9Eei2Ub3VuxG4ag" base_Class="_SRIVYOQ9Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_U37_keQ9Eei2Ub3VuxG4ag" base_Class="_U37_kOQ9Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ee0vYuQ_Eei2Ub3VuxG4ag" base_StructuralFeature="_ee0vYeQ_Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ee5n4eQ_Eei2Ub3VuxG4ag" base_StructuralFeature="_ee5n4OQ_Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1r9kY-Q_Eei2Ub3VuxG4ag" base_StructuralFeature="_1r9kYuQ_Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1r-LceQ_Eei2Ub3VuxG4ag" base_StructuralFeature="_1r-LcOQ_Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0-F8U-RAEei2Ub3VuxG4ag" base_StructuralFeature="_0-F8UuRAEei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0-GjYeRAEei2Ub3VuxG4ag" base_StructuralFeature="_0-GjYORAEei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MvmCoeRBEei2Ub3VuxG4ag" base_StructuralFeature="_MvmCoORBEei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MvnQweRBEei2Ub3VuxG4ag" base_StructuralFeature="_MvnQwORBEei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_1PPxwOwXEei7-e9MrPJW7Q" base_Class="_1POjoOwXEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hmt4sOwnEei7-e9MrPJW7Q" base_StructuralFeature="_hmtRoOwnEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_30qC0ezdEei7-e9MrPJW7Q" base_Class="_30qC0OzdEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_CYoX4ezeEei7-e9MrPJW7Q" base_Class="_CYoX4OzeEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jSYcIezeEei7-e9MrPJW7Q" base_StructuralFeature="_jSYcIOzeEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jSZqQezeEei7-e9MrPJW7Q" base_StructuralFeature="_jSZqQOzeEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qyf-o-zeEei7-e9MrPJW7Q" base_StructuralFeature="_qyf-ouzeEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qygls-zeEei7-e9MrPJW7Q" base_StructuralFeature="_qyglsuzeEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZlOvcezgEei7-e9MrPJW7Q" base_StructuralFeature="_ZlOvcOzgEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_auxxcezgEei7-e9MrPJW7Q" base_StructuralFeature="_auxxcOzgEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oeROAezlEei7-e9MrPJW7Q" base_StructuralFeature="_oeROAOzlEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3L_KMezmEei7-e9MrPJW7Q" base_StructuralFeature="_3L_KMOzmEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HKq0ceznEei7-e9MrPJW7Q" base_StructuralFeature="_HKq0cOznEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_T72n8eznEei7-e9MrPJW7Q" base_StructuralFeature="_T72n8OznEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_VwTgwezqEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_VwTgwOzqEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_YkPoAezqEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_YkPoAOzqEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_X0O1cezsEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_X0O1cOzsEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_ZqPU0OzsEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_ZqOtwOzsEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_bPkT4ezsEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_bPkT4OzsEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Lo3jcuz6Eei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_Lo3jcez6Eei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Lo6mwOz6Eei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_Lo5_sOz6Eei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_O9Aeoe0DEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_O9AeoO0DEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_R8JJQO0DEei7-e9MrPJW7Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_R8IiMO0DEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l4reQ-0FEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_l4reQu0FEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l4yzAe0FEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_l4yzAO0FEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yn_zEe0REei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_yn_zEO0REei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zthQsO0REei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_ztgpoO0REei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XwwHAO0VEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_Xwvf8O0VEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YcE78e0VEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_YcE78O0VEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0gWfAe0VEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_0gWfAO0VEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_gZDdUO2IEei7-e9MrPJW7Q">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_X0O1cOzsEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_khR28O2IEei7-e9MrPJW7Q">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_ZqOtwOzsEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_CXLIoO2JEei7-e9MrPJW7Q">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_VwTgwOzqEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_DTPIQO2JEei7-e9MrPJW7Q">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_YkPoAOzqEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x5sNEe2JEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_x5sNEO2JEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yy6UEe2JEei7-e9MrPJW7Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_yy6UEO2JEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_nereQPGQEei7s9ZrY0W7MQ" base_Class="_nepCAPGQEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_lZpZgfGSEei7s9ZrY0W7MQ" base_Class="_lZpZgPGSEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_onMTkfGSEei7s9ZrY0W7MQ" base_Class="_onMTkPGSEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E7rc4PGTEei7s9ZrY0W7MQ" base_StructuralFeature="_E7q10PGTEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E7t5IfGTEei7s9ZrY0W7MQ" base_StructuralFeature="_E7t5IPGTEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONctwvGUEei7s9ZrY0W7MQ" base_StructuralFeature="_ONctwfGUEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ONdU0_GUEei7s9ZrY0W7MQ" base_StructuralFeature="_ONdU0vGUEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XHCkofGUEei7s9ZrY0W7MQ" base_StructuralFeature="_XHCkoPGUEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XHDLsvGUEei7s9ZrY0W7MQ" base_StructuralFeature="_XHDLsfGUEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_eSBAsPJcEeibsZxxyZUKdQ" base_Class="_eR_ykPJcEeibsZxxyZUKdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_plL-E_JcEeibsZxxyZUKdQ" base_StructuralFeature="_plL-EvJcEeibsZxxyZUKdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_plMlI_JcEeibsZxxyZUKdQ" base_StructuralFeature="_plMlIvJcEeibsZxxyZUKdQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="__6s6YPMTEeiKa_-nH9J3Lg" base_Class="__6rFMPMTEeiKa_-nH9J3Lg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FXU7UPM5EeiKa_-nH9J3Lg" base_StructuralFeature="_FXUUQPM5EeiKa_-nH9J3Lg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FXXXkfM5EeiKa_-nH9J3Lg" base_StructuralFeature="_FXXXkPM5EeiKa_-nH9J3Lg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KcYJk_M5EeiKa_-nH9J3Lg" base_StructuralFeature="_KcYJkvM5EeiKa_-nH9J3Lg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KcZXsPM5EeiKa_-nH9J3Lg" base_StructuralFeature="_KcYwoPM5EeiKa_-nH9J3Lg"/>
  <OpenModel_Profile:Experimental xmi:id="_ZGHbwPe7EeiEqKXVVPCm1Q" base_Element="_w3xrYOQ5Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:Experimental xmi:id="_o2I-8Pe7EeiEqKXVVPCm1Q" base_Element="_cbT5IOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:Experimental xmi:id="_KUwDwPe8EeiEqKXVVPCm1Q" base_Element="_nepCAPGQEei7s9ZrY0W7MQ"/>
  <OpenModel_Profile:Experimental xmi:id="_TW3gUPfDEeiEqKXVVPCm1Q" base_Element="_fSQ4IOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:Experimental xmi:id="_Y_QsMPfDEeiEqKXVVPCm1Q" base_Element="_ucHMIOQ3Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:Experimental xmi:id="_bprrEPfDEeiEqKXVVPCm1Q" base_Element="_4QQU0OQ5Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:Experimental xmi:id="_d0t_QPfDEeiEqKXVVPCm1Q" base_Element="_9jP4cOQ5Eei2Ub3VuxG4ag"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_sHrCQEHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_GlxBwP1oEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_sHomAEHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_QG4ysP1oEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHs3cEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#__Lo9Ev1oEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sFhtMEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#__Lw44P1oEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHusoEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_M9Rg8v1pEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sFi7UEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_M9XAgP1pEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHxv8EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_BLpV4P19EeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHy-EEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_BluCwP19EeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sH0MMEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_IjiJcP19EeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sH1aUEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_I9Ob0P19EeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_sIAZcEHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_Omfk4P2SEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_sIHHIEHXEemqbK2aT-9uCA">
    <base_Class xmi:type="uml:Class" href="License.uml#_bCM3oP2SEeisxOMTY1eUug"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHc_0EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_tG0BUP-7EeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHdm4EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_tntH4P-7EeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHhRQEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_v5xRIP-7EeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHifYEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_wXOpMP-7EeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHjtgEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_yQCk8P-7EeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIceUEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_ccRu8P_BEeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIdscEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_cy77cP_BEeiQG4ZZm0HgYw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ECPWAAMDEemoQ5ZgWCUg_g" base_StructuralFeature="_ECOu8AMDEemoQ5ZgWCUg_g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EpMoUQMDEemoQ5ZgWCUg_g" base_StructuralFeature="_EpMoUAMDEemoQ5ZgWCUg_g"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGfWgEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_HVtowAOOEemCCMXOyOLwIw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGgkoEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_H5MwUAOOEemCCMXOyOLwIw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGjn8EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_IX2bMAOOEemCCMXOyOLwIw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGsx4EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_LybEoAOOEemCCMXOyOLwIw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sG5mMEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_OFmoMAOOEemCCMXOyOLwIw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_sGYBwEHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_4ZDVsMgEEeiEtuRgTYzSUQ"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sHmJwEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_1cIjwARsEemo7ZzqT33fqQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_sHpNEEHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_QG4ysP1oEeisxOMTY1eUug"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_sHrpUEHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_GlxBwP1oEeisxOMTY1eUug"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_sIYz8EHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_bCM3oP2SEeisxOMTY1eUug"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_sHUc8EHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_D_LXMN3xEei-jeeHUjfpLA"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_sHbxsEHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_T5-uYN3uEei-jeeHUjfpLA"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_sIBnkEHXEemqbK2aT-9uCA">
    <base_Element xmi:type="uml:Class" href="License.uml#_Omfk4P2SEeisxOMTY1eUug"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sF6uwEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_mQqsAAVlEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sF784EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_mQrTEAVlEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sF0oIEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_n3oCwgVlEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sF45kEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_n3op0AVlEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGA1YEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_LMgawgVoEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGDRoEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_LMho4AVoEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VDruARBaEemHjtkpPBz29Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_VDruABBaEemHjtkpPBz29Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VDs8IhBaEemHjtkpPBz29Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_VDs8IRBaEemHjtkpPBz29Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Future xmi:id="_dQw7kBN4EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_0VWWQNbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_o1gKEBN4EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_16YaYNbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_zGUSkBN4EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_2xdMUNbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_3muisBN4EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_3P8fINbXEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LJpvwRN5EemCyfN9HPKKTQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_LJpvwBN5EemCyfN9HPKKTQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Future xmi:id="_aVqm8BN5EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Association" href="Policy.uml#_l4q3MO0FEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_minsABN5EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_VwTgwOzqEei7-e9MrPJW7Q"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_rtBUUBN5EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Association" href="Policy.uml#_VC8uMBBaEemHjtkpPBz29Q"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Fl1FYRN6EemCyfN9HPKKTQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_Fl1FYBN6EemCyfN9HPKKTQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZeEbIBN6EemCyfN9HPKKTQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_ZeD0EBN6EemCyfN9HPKKTQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_198NsRN9EemCyfN9HPKKTQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_198NsBN9EemCyfN9HPKKTQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Future xmi:id="_iHvp4BN-EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_198NsBN9EemCyfN9HPKKTQ"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_jryPgBN-EemCyfN9HPKKTQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_ZeD0EBN6EemCyfN9HPKKTQ"/>
  </OpenModel_Profile:Future>
  <ActionLanguage:TextualRepresentation xmi:id="_puq3YBQgEemYQtunsEp6VQ" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty">
    <base_Comment xmi:type="uml:Comment" href="Policy.uml#_pupCMBQgEemYQtunsEp6VQ"/>
  </ActionLanguage:TextualRepresentation>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vMP6YRQgEemYQtunsEp6VQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_vMP6YBQgEemYQtunsEp6VQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Future xmi:id="_GCKiMBQhEemYQtunsEp6VQ">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_vMP6YBQgEemYQtunsEp6VQ"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_rO57QBRFEemnNtqNLTt4jg">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_FpW8cNcfEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_WcE6oBRHEemnNtqNLTt4jg">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_J-gIoNbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_cjSwgBRHEemnNtqNLTt4jg">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_KcJG4NbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_iwX90BRHEemnNtqNLTt4jg">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_LAB3ENbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:Future xmi:id="_pUd88BRHEemnNtqNLTt4jg">
    <base_Element xmi:type="uml:Property" href="Policy.uml#_PdPCMNbbEeitAsFAkChUcg"/>
  </OpenModel_Profile:Future>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9G-u0BTvEemqt4esDOA9pw">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_9G8SkBTvEemqt4esDOA9pw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="__F5WwBnKEemlxOdMFpUVvQ" base_Class="__F4vsBnKEemlxOdMFpUVvQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_z6bucBnLEemlxOdMFpUVvQ" base_Class="_z6bHYBnLEemlxOdMFpUVvQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n-rpsBpxEemOGejS9lsDjA" base_StructuralFeature="_n-rCoBpxEemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_phcc8BpxEemOGejS9lsDjA" base_StructuralFeature="_phb14BpxEemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tRSSIBp5EemOGejS9lsDjA" base_StructuralFeature="_tRRrEBp5EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_gBaFkRp7EemOGejS9lsDjA" base_Class="_gBaFkBp7EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kO29cRp7EemOGejS9lsDjA" base_StructuralFeature="_kO29cBp7EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kO4LkRp7EemOGejS9lsDjA" base_StructuralFeature="_kO4LkBp7EemOGejS9lsDjA"/>
  <OpenModel_Profile:Experimental xmi:id="_7YRJABp7EemOGejS9lsDjA" base_Element="_gBaFkBp7EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_UlJoMRp8EemOGejS9lsDjA" base_Class="_UlJoMBp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZKajIxp8EemOGejS9lsDjA" base_StructuralFeature="_ZKajIhp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZKbxQBp8EemOGejS9lsDjA" base_StructuralFeature="_ZKbKMBp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_toYcIRp8EemOGejS9lsDjA" base_Class="_toYcIBp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xB7K0xp8EemOGejS9lsDjA" base_StructuralFeature="_xB7K0hp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xB_cQRp8EemOGejS9lsDjA" base_StructuralFeature="_xB_cQBp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_NNQYIRp9EemOGejS9lsDjA" base_Class="_NNQYIBp9EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YFHdExp-EemOGejS9lsDjA" base_StructuralFeature="_YFHdEhp-EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YFM8oRp-EemOGejS9lsDjA" base_StructuralFeature="_YFM8oBp-EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_roVw0BqZEemOGejS9lsDjA" base_Class="_roVJwBqZEemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vmPw0xqZEemOGejS9lsDjA" base_StructuralFeature="_vmPw0hqZEemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vmQ-8RqZEemOGejS9lsDjA" base_StructuralFeature="_vmQ-8BqZEemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PJJAYR87EemJTaeYhZuDRA" base_StructuralFeature="_PJJAYB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PuSU0B87EemJTaeYhZuDRA" base_StructuralFeature="_PuRtwB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QfAAEB87EemJTaeYhZuDRA" base_StructuralFeature="_Qe_ZAB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Z5XzUR88EemJTaeYhZuDRA" base_StructuralFeature="_Z5XzUB88EemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ej2eEB8_EemJTaeYhZuDRA" base_StructuralFeature="_ej13AB8_EemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XWj7gB9AEemJTaeYhZuDRA" base_StructuralFeature="_XWjUcB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YJLEMR9AEemJTaeYhZuDRA" base_StructuralFeature="_YJLEMB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Y2KGAR9AEemJTaeYhZuDRA" base_StructuralFeature="_Y2KGAB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZdOtER9AEemJTaeYhZuDRA" base_StructuralFeature="_ZdOtEB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aMwskB9AEemJTaeYhZuDRA" base_StructuralFeature="_aMwFgB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_a3GqEB9AEemJTaeYhZuDRA" base_StructuralFeature="_a3GDAB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EXiFYCCjEemw1L3J4dNy4w" base_StructuralFeature="_EXheUCCjEemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FUxJsSCjEemw1L3J4dNy4w" base_StructuralFeature="_FUxJsCCjEemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GEsKwSCjEemw1L3J4dNy4w" base_StructuralFeature="_GEsKwCCjEemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Zrps0CCvEemw1L3J4dNy4w" base_StructuralFeature="_ZrpFwCCvEemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5LAPoSCvEemw1L3J4dNy4w" base_StructuralFeature="_5LAPoCCvEemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_65JzgSCvEemw1L3J4dNy4w" base_StructuralFeature="_65JzgCCvEemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ATTeUSDMEemw1L3J4dNy4w">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_ATTeUCDMEemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_onUNUSDPEemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_onUNUCDPEemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_p5_9MSDPEemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_p5_9MCDPEemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_7y9tYCDQEemw1L3J4dNy4w">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_7y9GUCDQEemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IwvLYSDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_IwvLYCDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JMHf0CDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_JMG4wCDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jl__cSDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Jl__cCDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_J_pOgSDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_J_pOgCDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KXd4oCDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_KXdRkCDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LGwnkSDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_LGwnkCDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2YJ1ECDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_2YJOAiDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2YJ1FCDREemw1L3J4dNy4w">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_2YJ1EyDREemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_FbTEISDSEemw1L3J4dNy4w">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_FbTEICDSEemw1L3J4dNy4w"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_kFsosTzEEeiWMf5FLWfdLA" base_Class="_kEZB9jzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kFsosjzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZB-DzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_45bWYjzEEeiWMf5FLWfdLA" base_Class="_45bWUDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45b9YDzEEeiWMf5FLWfdLA" base_StructuralFeature="_45bWUjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45b9YTzEEeiWMf5FLWfdLA" base_StructuralFeature="_45bWVDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45b9YjzEEeiWMf5FLWfdLA" base_StructuralFeature="_45bWVjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45b9YzzEEeiWMf5FLWfdLA" base_StructuralFeature="_45bWWjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45b9ZDzEEeiWMf5FLWfdLA" base_StructuralFeature="_45bWXjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_45ckcDzEEeiWMf5FLWfdLA" base_StructuralFeature="_45bWYDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PAQXwz27Eeiu6I5JfRTxxQ" base_StructuralFeature="_PAQXwj27Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:Future xmi:id="_IofU0KewEeixw5Ke5QD1pQ" base_Element="_45bWUDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_NTGp0KewEeixw5Ke5QD1pQ" base_Element="_kEZB9jzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_7pU0IDa7EeivvI-m1BaAbA" base_Class="_7pUNEDa7EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_knSmcTa8EeivvI-m1BaAbA" base_StructuralFeature="_knSmcDa8EeivvI-m1BaAbA" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lRLQ8Ta8EeivvI-m1BaAbA" base_StructuralFeature="_lRLQ8Da8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_luv9wDa8EeivvI-m1BaAbA" base_StructuralFeature="_luvWsDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oWHBkTa8EeivvI-m1BaAbA" base_StructuralFeature="_oWHBkDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pJTZETa8EeivvI-m1BaAbA" base_StructuralFeature="_pJTZEDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_0Ab7cDnBEeiWMf5FLWfdLA" base_Class="_0AbUYDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6g1tYjnBEeiWMf5FLWfdLA" base_StructuralFeature="_6g1tYDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6g3ikjnBEeiWMf5FLWfdLA" base_StructuralFeature="_6g3ikDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6g5XwDnBEeiWMf5FLWfdLA" base_StructuralFeature="_6g4wsDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_A8dPwTa-EeivvI-m1BaAbA" base_StructuralFeature="_A8dPwDa-EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BxpLUDa-EeivvI-m1BaAbA" base_StructuralFeature="_BxokQDa-EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CUeLkTa-EeivvI-m1BaAbA" base_StructuralFeature="_CUeLkDa-EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oa3JQDa9EeivvI-m1BaAbA" base_StructuralFeature="_oa2iMDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pMLRcDa9EeivvI-m1BaAbA" base_StructuralFeature="_pMKqYDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_EjKHEDd2EeiIfPeSAqyGdQ" base_StructuralFeature="_EjJgADd2EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_F5b9gTd2EeiIfPeSAqyGdQ" base_StructuralFeature="_F5b9gDd2EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YMEoUJT1EeiYXO5wr78TUw" base_Element="_7pUNEDa7EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_glKaMJT1EeiYXO5wr78TUw" base_Element="_knSmcDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_hvUgMJT1EeiYXO5wr78TUw" base_Element="_lRLQ8Da8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_i388MJT1EeiYXO5wr78TUw" base_Element="_luvWsDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_kDQ4wJT1EeiYXO5wr78TUw" base_Element="_oWHBkDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_lmmTwJT1EeiYXO5wr78TUw" base_Element="_pJTZEDa8EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_XkYfwJUBEeiYXO5wr78TUw" base_Element="_0AbUYDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YpUHgJUBEeiYXO5wr78TUw" base_Element="_6g1tYDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_ZkJ_IJUBEeiYXO5wr78TUw" base_Element="_6g3ikDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_awZv0JUBEeiYXO5wr78TUw" base_Element="_6g4wsDnBEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_U3UDQJUGEeiYXO5wr78TUw" base_Element="_A8dPwDa-EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_W2o2sJUGEeiYXO5wr78TUw" base_Element="_2aIggDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_XpOxQJUGEeiYXO5wr78TUw" base_Element="_BxokQDa-EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Yhnx0JUGEeiYXO5wr78TUw" base_Element="_CUeLkDa-EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_lkekIJUGEeiYXO5wr78TUw" base_Element="_PjIasDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_qg2XgJUGEeiYXO5wr78TUw" base_Element="_oa2iMDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_rbHnYJUGEeiYXO5wr78TUw" base_Element="_pMKqYDa9EeivvI-m1BaAbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_LCFOEJUHEeiYXO5wr78TUw" base_Element="_7hn1IDd1EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_L1qAEJUHEeiYXO5wr78TUw" base_Element="_EjJgADd2EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_Mjc6MJUHEeiYXO5wr78TUw" base_Element="_F5b9gDd2EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_ONrx8JUIEeiYXO5wr78TUw" base_Element="_B3kJsDnKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_O-PFIJUIEeiYXO5wr78TUw" base_Element="_IJCHwDnKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_PrZtIJUIEeiYXO5wr78TUw" base_Element="_LgsnIDnKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Qh8TkJUIEeiYXO5wr78TUw" base_Element="_ON-FsDnKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_RUXPAJUIEeiYXO5wr78TUw" base_Element="_RUyssDnKEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_SxwaEJUIEeiYXO5wr78TUw" base_Element="_tMoywDnJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Tg3i0JUIEeiYXO5wr78TUw" base_Element="_zZIKMDnJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_UQqoEJUIEeiYXO5wr78TUw" base_Element="_1qskMDnJEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbTTIKY4Eeily5uFlujj3Q" base_StructuralFeature="_ifaxMDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbQP0qY4Eeily5uFlujj3Q" base_StructuralFeature="_-b8GcDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbQ24aY4Eeily5uFlujj3Q" base_StructuralFeature="__BqCoDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbRd8KY4Eeily5uFlujj3Q" base_StructuralFeature="__o0JQDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbSFAKY4Eeily5uFlujj3Q" base_StructuralFeature="_Ag8rIDdQEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbPBsKY4Eeily5uFlujj3Q" base_StructuralFeature="_N61nIDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbPowKY4Eeily5uFlujj3Q" base_StructuralFeature="_O2y5EDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbUhQaY4Eeily5uFlujj3Q" base_StructuralFeature="_TsnHUDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YbVIUKY4Eeily5uFlujj3Q" base_StructuralFeature="_W5c2wDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbNzkKY4Eeily5uFlujj3Q" base_Element="_ImxsgDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbPBsaY4Eeily5uFlujj3Q" base_Element="_N61nIDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbPowaY4Eeily5uFlujj3Q" base_Element="_O2y5EDeBEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbSFAaY4Eeily5uFlujj3Q" base_Element="_X9TdUDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbTTIaY4Eeily5uFlujj3Q" base_Element="_ifaxMDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbQP0KY4Eeily5uFlujj3Q" base_Element="_4oResDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbVvYKY4Eeily5uFlujj3Q" base_Element="_tFQGcDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbVvYaY4Eeily5uFlujj3Q" base_Element="_0VFxQDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbVvYqY4Eeily5uFlujj3Q" base_Element="_2M_uEDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbVvY6Y4Eeily5uFlujj3Q" base_Element="_46OwYDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbVvZKY4Eeily5uFlujj3Q" base_Element="_6gEFwDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbWWcKY4Eeily5uFlujj3Q" base_Element="_95b1UDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbWWcaY4Eeily5uFlujj3Q" base_Element="__bv8oDnLEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbT6MqY4Eeily5uFlujj3Q" base_Element="_LsX6UDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbUhQqY4Eeily5uFlujj3Q" base_Element="_TsnHUDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:Preliminary xmi:id="_YbVIUaY4Eeily5uFlujj3Q" base_Element="_W5c2wDgXEeiOYfGHew0BGg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sGEfwEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_ph9WQgVoEemrBZmpgd_POA"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_t21vYSVzEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_t21vYCVzEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dDmJwSV1Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dDmJwCV1Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dDnX4iV1Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dDnX4SV1Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_6sz04CV2Eem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_6szN0CV2Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="__taA8CV2Eem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#__tZZ4CV2Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MgrfICV3Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Mgq4ECV3Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_M6UuMSV3Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_M6UuMCV3Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NbMfQiV6Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_NbMfQSV6Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NbNtYiV6Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_NbNtYSV6Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Oh1XMSV6Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Oh1XMCV6Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Oh1-QyV6Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Oh1-QiV6Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_I-em4CV7Eem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_I-d_0CV7Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_Lk7EsSV7Eem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_Lk7EsCV7Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YBJ74CV7Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YBJU0CV7Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Yeq-UCV7Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_YeqXQCV7Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pUWFgCV8Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pUVeciV8Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pUWskiV8Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pUWskSV8Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rrne5CV8Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rrne4yV8Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rroF8yV8Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_rroF8iV8Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_AgoUASV_Eem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_AgoUACV_Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QY8QgCV_Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_QY7pcCV_Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RbnOcSV_Eem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_RbnOcCV_Eem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pyc1cCWKEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pycOYiWKEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pyeDkCWKEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pydcgiWKEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_PiWJQCWLEem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_PiViMCWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_QzoK8SWLEem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_QzoK8CWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_RVQ4YCWLEem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_RVQRUCWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelClass xmi:id="_SXULQSWLEem2wfSvtxnwBQ">
    <base_Class xmi:type="uml:Class" href="Ves.uml#_SXULQCWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1GgHICWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1GfgECWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1p358SWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_1p358CWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3OSTASWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_3OSTACWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3oh_ASWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_3oh_ACWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_43lMESWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_43lMECWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5Su3ASWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_5Su3ACWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6BFx0SWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6BFx0CWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6bOwISWLEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_6bOwICWLEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_smUZUyWMEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_smUZUiWMEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_smVAYiWMEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_smVAYSWMEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zdXwsyWMEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zdXwsiWMEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zdYXwyWMEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_zdYXwiWMEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SGDKMyWNEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_SGDKMiWNEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SGDxQyWNEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_SGDxQiWNEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TtVREiWNEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_TtVRESWNEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TtWfMSWNEem2wfSvtxnwBQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_TtWfMCWNEem2wfSvtxnwBQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelClass xmi:id="_Q8qb0SYzEemRA_CB-n5OfQ" base_Class="_Q8qb0CYzEemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QfkasSY0EemRA_CB-n5OfQ" base_StructuralFeature="_QfkasCY0EemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_iQAhASY1EemRA_CB-n5OfQ" base_Class="_iQAhACY1EemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_r58PsSY1EemRA_CB-n5OfQ" base_Class="_r58PsCY1EemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Xht84SY2EemRA_CB-n5OfQ" base_Class="_Xht84CY2EemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_aUEvwCY2EemRA_CB-n5OfQ" base_Class="_aUEIsCY2EemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_b-lw0SY2EemRA_CB-n5OfQ" base_Class="_b-lw0CY2EemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9-F7MSZBEemRA_CB-n5OfQ" base_StructuralFeature="_9-F7MCZBEemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-0ohoSZBEemRA_CB-n5OfQ" base_StructuralFeature="_-0ohoCZBEemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_6tkdECibEemvDu1mw_PV_Q">
    <base_Class xmi:type="uml:Class" href="Policy.uml#_6tin4CibEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelClass>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GS-Z8SicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_GS-Z8CicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H7rdISicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_H7rdICicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JRsN0CicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_JRrmwCicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KFozQSicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_KFozQCicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NutywSicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_NutywCicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PCCb0CicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_PCB0wCicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x4NwgSicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_x4NwgCicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_41QbICicEemvDu1mw_PV_Q">
    <base_StructuralFeature xmi:type="uml:Property" href="Policy.uml#_41P0ECicEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_RKUPkCifEemvDu1mw_PV_Q">
    <base_Element xmi:type="uml:Class" href="Policy.uml#_6tin4CibEemvDu1mw_PV_Q"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIDcwEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_FeFtUCoxEemnoK-fhDe5lw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIEq4EHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_IkqcsCoxEemnoK-fhDe5lw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sIF5AEHXEemqbK2aT-9uCA">
    <base_StructuralFeature xmi:type="uml:Property" href="License.uml#_RF49QCo5EemnoK-fhDe5lw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MVvycS4zEemS0_wZSU3sbA" base_StructuralFeature="_MVvycC4zEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Experimental xmi:id="_eYHLsC4zEemS0_wZSU3sbA" base_Element="_MVvycC4zEemS0_wZSU3sbA"/>
  <OpenModel_Profile:Preliminary xmi:id="_8TIQ4JUHEeiYXO5wr78TUw" base_Element="_B1G2UDd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Reference xmi:id="_2s5kQCvNEemS0_wZSU3sbA" base_Element="_B1G2UDd_EeiIfPeSAqyGdQ" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Reference xmi:id="_WoDPEC47EemS0_wZSU3sbA" base_Element="_Tw79sD2pEeiu6I5JfRTxxQ" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Reference xmi:id="_abu8EC47EemS0_wZSU3sbA" base_Element="_Tw5PIES0EeiVGPeZpaYNtQ" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Reference xmi:id="_eCHz8C47EemS0_wZSU3sbA" base_Element="_il0cAES0EeiVGPeZpaYNtQ" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Reference xmi:id="_hbI-MC47EemS0_wZSU3sbA" base_Element="_7pUNEDa7EeivvI-m1BaAbA" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Reference xmi:id="_lR_T8C47EemS0_wZSU3sbA" base_Element="_0AbUYDnBEeiWMf5FLWfdLA" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Preliminary xmi:id="_qqZjEC47EemS0_wZSU3sbA" base_Element="_rmDCkNxjEei0G_d67y10Rg"/>
  <OpenModel_Profile:Reference xmi:id="_qrVXMC47EemS0_wZSU3sbA" base_Element="_rmDCkNxjEei0G_d67y10Rg" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_SDkmwDE6Eemw1_Ys6rcLWw" base_Class="_SDiKgDE6Eemw1_Ys6rcLWw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dxniQjE6Eemw1_Ys6rcLWw" base_StructuralFeature="_dxniQTE6Eemw1_Ys6rcLWw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dxowYTE6Eemw1_Ys6rcLWw" base_StructuralFeature="_dxowYDE6Eemw1_Ys6rcLWw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_v05U8DFPEemw1_Ys6rcLWw" base_Class="_v04t4DFPEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_0ZjL4DFPEemw1_Ys6rcLWw" base_Class="_0Zik0DFPEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ASE5EDFQEemw1_Ys6rcLWw" base_Class="_ASESADFQEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_il9ZATFQEemw1_Ys6rcLWw" base_Class="_il9ZADFQEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Reference xmi:id="_FLCc0DOlEemzC6274d_Yog" base_Element="_8naVoES0EeiVGPeZpaYNtQ" reference="IFA011 v2.5.1"/>
  <OpenModel_Profile:Future xmi:id="_kz4S0DOlEemzC6274d_Yog" base_Element="_EXheUCCjEemw1L3J4dNy4w"/>
  <OpenModel_Profile:Future xmi:id="_mPacsDOlEemzC6274d_Yog" base_Element="_FUxJsCCjEemw1L3J4dNy4w"/>
  <OpenModel_Profile:Future xmi:id="_oMWDcDOlEemzC6274d_Yog" base_Element="_GEsKwCCjEemw1L3J4dNy4w"/>
  <OpenModel_Profile:Preliminary xmi:id="__2gysDOlEemzC6274d_Yog" base_Element="_-b8GcDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_Cn4uIDOmEemzC6274d_Yog" base_Element="__BqCoDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_ExUf0DOmEemzC6274d_Yog" base_Element="__o0JQDdPEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_G6J0kDOmEemzC6274d_Yog" base_Element="_Ag8rIDdQEeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Future xmi:id="_v7WhEDOmEemzC6274d_Yog" base_Element="_ZrpFwCCvEemw1L3J4dNy4w"/>
  <OpenModel_Profile:Future xmi:id="_xUL8QDOmEemzC6274d_Yog" base_Element="_5LAPoCCvEemw1L3J4dNy4w"/>
  <OpenModel_Profile:Future xmi:id="_zZbKcDOmEemzC6274d_Yog" base_Element="_65JzgCCvEemw1L3J4dNy4w"/>
  <OpenModel_Profile:Future xmi:id="___prIDOmEemzC6274d_Yog" base_Element="_uFBX8PuHEeiYVshOvl6_ww"/>
  <OpenModel_Profile:Future xmi:id="_BVI3YDOnEemzC6274d_Yog" base_Element="_RayLoPuIEeiYVshOvl6_ww"/>
  <OpenModel_Profile:Future xmi:id="_DAEIIDOnEemzC6274d_Yog" base_Element="_gUB30PuIEeiYVshOvl6_ww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GA6IYTd_EeiIfPeSAqyGdQ" base_StructuralFeature="_GA6IYDd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_G-M3EDd_EeiIfPeSAqyGdQ" base_StructuralFeature="_G-MQADd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Hy64kTd_EeiIfPeSAqyGdQ" base_StructuralFeature="_Hy64kDd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_9Ult4JUHEeiYXO5wr78TUw" base_Element="_GA6IYDd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_-NoOsJUHEeiYXO5wr78TUw" base_Element="_G-MQADd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:Preliminary xmi:id="__AwUwJUHEeiYXO5wr78TUw" base_Element="_Hy64kDd_EeiIfPeSAqyGdQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uFCmEPuHEeiYVshOvl6_ww" base_StructuralFeature="_uFBX8PuHEeiYVshOvl6_ww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RayLofuIEeiYVshOvl6_ww" base_StructuralFeature="_RayLoPuIEeiYVshOvl6_ww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gUB30fuIEeiYVshOvl6_ww" base_StructuralFeature="_gUB30PuIEeiYVshOvl6_ww"/>
  <OpenModel_Profile:Experimental xmi:id="_XoSTsDX0EemvTc8tEY2xig" base_Element="_SDiKgDE6Eemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Experimental xmi:id="_eDQ9oDX1EemvTc8tEY2xig" base_Element="_Q8qb0CYzEemRA_CB-n5OfQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eodhIDYQEemvTc8tEY2xig" base_StructuralFeature="_eoc6EDYQEemvTc8tEY2xig"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E4DBoDYREemvTc8tEY2xig" base_StructuralFeature="_E4CakDYREemvTc8tEY2xig"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_vzok8DYWEemvTc8tEY2xig" base_Class="_vzn94DYWEemvTc8tEY2xig"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_qbY4cTYXEemvTc8tEY2xig" base_Class="_qbY4cDYXEemvTc8tEY2xig"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dShWATYdEemvTc8tEY2xig" base_StructuralFeature="_dShWADYdEemvTc8tEY2xig"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eCmvITYdEemvTc8tEY2xig" base_StructuralFeature="_eCmvIDYdEemvTc8tEY2xig"/>
  <OpenModel_Profile:Reference xmi:id="_Pf0lsDYeEemvTc8tEY2xig" base_Element="__F4vsBnKEemlxOdMFpUVvQ" reference="From TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_SDIP8DYeEemvTc8tEY2xig" base_Element="_Q8qb0CYzEemRA_CB-n5OfQ" reference="From TMF SID"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_3m9g4DYiEemz0q_yvHDIRA" base_Class="_3m850DYiEemz0q_yvHDIRA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_MbJhgTYjEemz0q_yvHDIRA" base_Class="_MbJhgDYjEemz0q_yvHDIRA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_2HUzYDqyEemOl5OHBoqS_w" base_Class="_2HUMUDqyEemOl5OHBoqS_w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_4vw1QTqyEemOl5OHBoqS_w" base_Class="_4vw1QDqyEemOl5OHBoqS_w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_8fZIsDqyEemOl5OHBoqS_w" base_Class="_8fYhoDqyEemOl5OHBoqS_w"/>
  <OpenModel_Profile:Reference xmi:id="_KIu2wDq0EemOl5OHBoqS_w" base_Element="_4vw1QDqyEemOl5OHBoqS_w" reference="From the TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_MXZtwDq0EemOl5OHBoqS_w" base_Element="_2HUMUDqyEemOl5OHBoqS_w" reference="From the TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_QFODUDq0EemOl5OHBoqS_w" base_Element="_z6bHYBnLEemlxOdMFpUVvQ" reference="From TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_SfdRIDq0EemOl5OHBoqS_w" base_Element="_8fYhoDqyEemOl5OHBoqS_w" reference="From the TMF SID"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_e2_dUTxbEemSHu2qGsweWg" base_Class="_e2_dUDxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_iaJbADxbEemSHu2qGsweWg" base_Class="_iaIz8DxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_mOIC8DxbEemSHu2qGsweWg" base_Class="_mOHb4DxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_upuWQTxbEemSHu2qGsweWg" base_Class="_upuWQDxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_yfwzsTxbEemSHu2qGsweWg" base_Class="_yfwzsDxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_3gshgDxcEemSHu2qGsweWg" base_Class="_3gr6cDxcEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_LLdb8DxdEemSHu2qGsweWg" base_Class="_LLc04DxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_OKVn4TxdEemSHu2qGsweWg" base_Class="_OKVn4DxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SGEdozxdEemSHu2qGsweWg" base_StructuralFeature="_SGEdojxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SGFrwTxdEemSHu2qGsweWg" base_StructuralFeature="_SGFrwDxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TMD1UzxdEemSHu2qGsweWg" base_StructuralFeature="_TMD1UjxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TMFDcTxdEemSHu2qGsweWg" base_StructuralFeature="_TMFDcDxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_T4UeYzxdEemSHu2qGsweWg" base_StructuralFeature="_T4UeYjxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_T4VsgTxdEemSHu2qGsweWg" base_StructuralFeature="_T4VsgDxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_itUjwTxdEemSHu2qGsweWg" base_StructuralFeature="_itUjwDxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_itWY8DxdEemSHu2qGsweWg" base_StructuralFeature="_itVx4DxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jaJNgzxdEemSHu2qGsweWg" base_StructuralFeature="_jaJNgjxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_jaJ0kTxdEemSHu2qGsweWg" base_StructuralFeature="_jaJ0kDxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_x-HNQDxdEemSHu2qGsweWg" base_Element="_LLc04DxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_zA6uEDxdEemSHu2qGsweWg" base_Element="_OKVn4DxdEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_z02FYDxdEemSHu2qGsweWg" base_Element="_e2_dUDxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_0mZeIDxdEemSHu2qGsweWg" base_Element="_iaIz8DxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_1XkcYDxdEemSHu2qGsweWg" base_Element="_mOHb4DxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_2KE3YDxdEemSHu2qGsweWg" base_Element="_upuWQDxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_25KyADxdEemSHu2qGsweWg" base_Element="_yfwzsDxbEemSHu2qGsweWg"/>
  <OpenModel_Profile:Experimental xmi:id="_33CvgDxdEemSHu2qGsweWg" base_Element="_3gr6cDxcEemSHu2qGsweWg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BUbKQEUBEemWRYeHGX88Yw" base_StructuralFeature="_BUajMEUBEemWRYeHGX88Yw"/>
  <OpenModel_Profile:Experimental xmi:id="_O-o3gEUBEemWRYeHGX88Yw" base_Element="_BUajMEUBEemWRYeHGX88Yw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_jJ_0gDxkEemSdYSKacDoqQ" base_Class="_jJ_NcDxkEemSdYSKacDoqQ"/>
  <OpenModel_Profile:Experimental xmi:id="_oiRO0DxmEemL36iV0V0qOA" base_Element="_jJ_NcDxkEemSdYSKacDoqQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UPVKkFVTEemo4a1c6QCrGw" base_StructuralFeature="_UPUjgFVTEemo4a1c6QCrGw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UPaqIFVTEemo4a1c6QCrGw" base_StructuralFeature="_UPaDEFVTEemo4a1c6QCrGw"/>
  <OpenModel_Profile:Preliminary xmi:id="_6xrb4FZMEempS4TbYDJLLQ" base_Element="_eCjlEOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:Preliminary xmi:id="_A10IkFZNEempS4TbYDJLLQ" base_Element="_1POjoOwXEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_D7zCEFZNEempS4TbYDJLLQ" base_Element="_v04t4DFPEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Preliminary xmi:id="_MB2jMFZNEempS4TbYDJLLQ" base_Element="_0Zik0DFPEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Preliminary xmi:id="_YvXXoFZNEempS4TbYDJLLQ" base_Element="_vi4oQOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:Preliminary xmi:id="_c54QQFZNEempS4TbYDJLLQ" base_Element="_wEHtEOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:Preliminary xmi:id="_gD4uIFZNEempS4TbYDJLLQ" base_Element="_wj9DsOLJEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:Preliminary xmi:id="_o6lCAFZNEempS4TbYDJLLQ" base_Element="_eoc6EDYQEemvTc8tEY2xig"/>
  <OpenModel_Profile:Preliminary xmi:id="_sXgb4FZNEempS4TbYDJLLQ" base_Element="_E4CakDYREemvTc8tEY2xig"/>
  <OpenModel_Profile:Preliminary xmi:id="_wzCzEFZNEempS4TbYDJLLQ" base_Element="_Td26cOLNEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:Preliminary xmi:id="_zIfAcFZNEempS4TbYDJLLQ" base_Element="_T6QikOLNEeiKy5JVrA0UGA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XUm3gFcWEemLJovD_F1O1A" base_StructuralFeature="_XUmQcFcWEemLJovD_F1O1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Z1QPUVcWEemLJovD_F1O1A" base_StructuralFeature="_Z1QPUFcWEemLJovD_F1O1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_URSToVcaEemLJovD_F1O1A" base_StructuralFeature="_URSToFcaEemLJovD_F1O1A"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_f6Gw4VcaEemLJovD_F1O1A" base_StructuralFeature="_f6Gw4FcaEemLJovD_F1O1A"/>
  <OpenModel_Profile:Preliminary xmi:id="_WCfLAFrJEem07dac9irJSQ" base_Element="_7MZssOwXEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_pvzDIFrJEem07dac9irJSQ" base_Element="_QjAw8DFQEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Preliminary xmi:id="_sB-hIFrJEem07dac9irJSQ" base_Element="_RDwtkDFQEemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Experimental xmi:id="_Y_0CUFrKEem07dac9irJSQ" base_Element="_UVWO4CYzEemRA_CB-n5OfQ"/>
  <OpenModel_Profile:Experimental xmi:id="_wh7o0FrKEem07dac9irJSQ" base_Element="_ZWh3ADE6Eemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Experimental xmi:id="_gM_IwFrMEem07dac9irJSQ" base_Element="_kO0hMBp7EemOGejS9lsDjA"/>
  <OpenModel_Profile:Experimental xmi:id="_iGIbsFrMEem07dac9irJSQ" base_Element="_dxmUIDE6Eemw1_Ys6rcLWw"/>
  <OpenModel_Profile:Preliminary xmi:id="_6398cF0jEemRdaQWqjNOmA" base_Element="_oyf9MOwXEei7-e9MrPJW7Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_eWB_IGEXEemButgjVWb0qQ" base_Class="_eV_i4GEXEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BKBigGEYEemButgjVWb0qQ" base_StructuralFeature="_BKA7cGEYEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_CdZO4WEYEemButgjVWb0qQ" base_StructuralFeature="_CdZO4GEYEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1lMQkWEbEemButgjVWb0qQ" base_StructuralFeature="_1lMQkGEbEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1lOFwWEbEemButgjVWb0qQ" base_StructuralFeature="_1lOFwGEbEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3p3eEGEbEemButgjVWb0qQ" base_StructuralFeature="_3p23AmEbEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3p4FIWEbEemButgjVWb0qQ" base_StructuralFeature="_3p4FIGEbEemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_S3D3EWE7EemButgjVWb0qQ" base_Class="_S3D3EGE7EemButgjVWb0qQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E_4PYWE8EemQKt2NqrzEJw" base_StructuralFeature="_E_4PYGE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E_75wWE8EemQKt2NqrzEJw" base_StructuralFeature="_E_75wGE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_G3ssoGE8EemQKt2NqrzEJw" base_StructuralFeature="_G3sFkmE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_G3t6wGE8EemQKt2NqrzEJw" base_StructuralFeature="_G3tTsGE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RCshAGE8EemQKt2NqrzEJw" base_StructuralFeature="_RCr58GE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VmVrUGE8EemQKt2NqrzEJw" base_StructuralFeature="_VmVEQGE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:Reference xmi:id="_9FkqMGIKEemaRqBs_iqjpw" base_Element="_NNQYIBp9EemOGejS9lsDjA" reference="From TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_C4uUkGILEemaRqBs_iqjpw" base_Element="_toYcIBp8EemOGejS9lsDjA" reference="From TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_GIkUsGILEemaRqBs_iqjpw" base_Element="_UlJoMBp8EemOGejS9lsDjA" reference="From TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_J4HIkGILEemaRqBs_iqjpw" base_Element="_S3D3EGE7EemButgjVWb0qQ" reference="From TMF SID"/>
  <OpenModel_Profile:Reference xmi:id="_UAfGwGILEemaRqBs_iqjpw" base_Element="_eV_i4GEXEemButgjVWb0qQ" reference="From TMF SID"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DLbYsn7_EeifJIHxnlj6Cg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_DLbYsH7_EeifJIHxnlj6Cg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fTikoIFJEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_fTh9kIFJEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gAXOYYFJEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_gAWnUIFJEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hCTMgYFJEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_hCSlcIFJEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MIUQcoFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_MIUQcIFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NyvK4YFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_Nyuj0IFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ahVkcoFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_ahVkcIFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cvnZ4oFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_cvnZ4IFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_daMn8oFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_daMn8IFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fOZJcoFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_fOZJcIFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pW31UoFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_pW31UIFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sw_LwoFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_sw_LwIFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uh694IFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_uh6W0IFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xj1PsIFKEeieQ4zKGFzYtQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_xj0ooIFKEeieQ4zKGFzYtQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bqoiUZGyEeiUeLUnFxb3Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_bqn7QJGyEeiUeLUnFxb3Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dGL6UpGyEeiUeLUnFxb3Bg">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_dGL6UJGyEeiUeLUnFxb3Bg"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BkrOY8geEeiEtuRgTYzSUQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_BkrOYsgeEeiEtuRgTYzSUQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3250MMivEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_325NIMivEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U7ZeI8iwEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_U7ZeIsiwEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_THKD48ixEeiKReoLXDYvSw">
    <base_StructuralFeature xmi:type="uml:Property" href="Ves.uml#_THKD4sixEeiKReoLXDYvSw"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Preliminary xmi:id="_US4S4HaGEemQatxXK-x5hg" base_Element="_zxlckB8-EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_XoYPEHaGEemQatxXK-x5hg" base_Element="_PJJAYB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_abHccHaGEemQatxXK-x5hg" base_Element="_PuRtwB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_ctl1YHaGEemQatxXK-x5hg" base_Element="_Qe_ZAB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_fW4y4HaGEemQatxXK-x5hg" base_Element="_ej13AB8_EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_rETcQHaGEemQatxXK-x5hg" base_Element="_4DfhMB8_EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_t3f8oHaGEemQatxXK-x5hg" base_Element="_Z5XzUB88EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_vocV0HaGEemQatxXK-x5hg" base_Element="_XWjUcB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_yLLYUHaGEemQatxXK-x5hg" base_Element="_YJLEMB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_0tWaIHaGEemQatxXK-x5hg" base_Element="_Y2KGAB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_2tV78HaGEemQatxXK-x5hg" base_Element="_ZdOtEB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_4j3_wHaGEemQatxXK-x5hg" base_Element="_aMwFgB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_7lYo8HaGEemQatxXK-x5hg" base_Element="_a3GDAB9AEemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_9Us_kHaIEemQatxXK-x5hg" base_Element="_MevNkJddEei-sOl6ywWHlg"/>
  <OpenModel_Profile:Preliminary xmi:id="_FGYzMHaJEemQatxXK-x5hg" base_Element="_TXtQgJddEei-sOl6ywWHlg"/>
  <OpenModel_Profile:Preliminary xmi:id="_If-lMHaJEemQatxXK-x5hg" base_Element="_UVFewJddEei-sOl6ywWHlg"/>
  <OpenModel_Profile:Preliminary xmi:id="_OYM80HaJEemQatxXK-x5hg" base_Element="_I79lEB8-EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_SOM-AHaJEemQatxXK-x5hg" base_Element="_TTf2EB89EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_a31GQHaJEemQatxXK-x5hg" base_Element="_6TxekB87EemJTaeYhZuDRA"/>
  <OpenModel_Profile:Preliminary xmi:id="_AbCe4IGAEemr-LDp1evzdw" base_Element="__F4vsBnKEemlxOdMFpUVvQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_DZ6DwIGAEemr-LDp1evzdw" base_Element="_n-rCoBpxEemOGejS9lsDjA"/>
  <OpenModel_Profile:Preliminary xmi:id="_GrV_UIGAEemr-LDp1evzdw" base_Element="_phb14BpxEemOGejS9lsDjA"/>
  <OpenModel_Profile:Preliminary xmi:id="_I4HY4IGAEemr-LDp1evzdw" base_Element="_tRRrEBp5EemOGejS9lsDjA"/>
  <OpenModel_Profile:Preliminary xmi:id="_MjLVYIGAEemr-LDp1evzdw" base_Element="_eV_i4GEXEemButgjVWb0qQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_QAqI4IGAEemr-LDp1evzdw" base_Element="_BKA7cGEYEemButgjVWb0qQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_SO5iEIGAEemr-LDp1evzdw" base_Element="_CdZO4GEYEemButgjVWb0qQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_UwCpIIGAEemr-LDp1evzdw" base_Element="_z6bHYBnLEemlxOdMFpUVvQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_XlS_AIGAEemr-LDp1evzdw" base_Element="_URSToFcaEemLJovD_F1O1A"/>
  <OpenModel_Profile:Preliminary xmi:id="_Zt8GgIGAEemr-LDp1evzdw" base_Element="_f6Gw4FcaEemLJovD_F1O1A"/>
  <OpenModel_Profile:Preliminary xmi:id="_cIePQIGAEemr-LDp1evzdw" base_Element="_4vw1QDqyEemOl5OHBoqS_w"/>
  <OpenModel_Profile:Preliminary xmi:id="_e7MOgIGAEemr-LDp1evzdw" base_Element="_2HUMUDqyEemOl5OHBoqS_w"/>
  <OpenModel_Profile:Preliminary xmi:id="_hp5QcIGAEemr-LDp1evzdw" base_Element="_8fYhoDqyEemOl5OHBoqS_w"/>
  <OpenModel_Profile:Preliminary xmi:id="_Bz2aAIGCEemr-LDp1evzdw" base_Element="_utCzUDX1EemvTc8tEY2xig"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_AkO5gV0VEemiOP02o5T8tA" base_Class="_AkO5gF0VEemiOP02o5T8tA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_A_9MMV0VEemiOP02o5T8tA" base_Class="_A_9MMF0VEemiOP02o5T8tA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_BZSSMV0VEemiOP02o5T8tA" base_Class="_BZSSMF0VEemiOP02o5T8tA"/>
  <OpenModel_Profile:Experimental xmi:id="_ipP74IMFEemyVus8T4NvCQ" base_Element="_e6hnYIMFEemyVus8T4NvCQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1pWvwIMFEemyVus8T4NvCQ" base_StructuralFeature="_1pWIsIMFEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Experimental xmi:id="__5dtoIMFEemyVus8T4NvCQ" base_Element="_1pWIsIMFEemyVus8T4NvCQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PriAAYncEemVXsYTZj8frQ" base_StructuralFeature="_PriAAIncEemVXsYTZj8frQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PrjOIYncEemVXsYTZj8frQ" base_StructuralFeature="_PrjOIIncEemVXsYTZj8frQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uTS-E4ndEemVXsYTZj8frQ" base_StructuralFeature="_uTS-EondEemVXsYTZj8frQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uTUMMIndEemVXsYTZj8frQ" base_StructuralFeature="_uTTlIIndEemVXsYTZj8frQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_1RJF8JzhEem7-cWktwUxRA" base_Element="_toYcIBp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:Preliminary xmi:id="_3Yyu8JzhEem7-cWktwUxRA" base_Element="_S3D3EGE7EemButgjVWb0qQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_4qDigJzhEem7-cWktwUxRA" base_Element="_RCr58GE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:Preliminary xmi:id="_5y8dMJzhEem7-cWktwUxRA" base_Element="_VmVEQGE8EemQKt2NqrzEJw"/>
  <OpenModel_Profile:Preliminary xmi:id="_7aJrkJzhEem7-cWktwUxRA" base_Element="_NNQYIBp9EemOGejS9lsDjA"/>
  <OpenModel_Profile:Preliminary xmi:id="_9DmVoJzhEem7-cWktwUxRA" base_Element="_XUmQcFcWEemLJovD_F1O1A"/>
  <OpenModel_Profile:Preliminary xmi:id="_-FwWMJzhEem7-cWktwUxRA" base_Element="_Z1QPUFcWEemLJovD_F1O1A"/>
  <OpenModel_Profile:Preliminary xmi:id="_AcCREJziEem7-cWktwUxRA" base_Element="_UlJoMBp8EemOGejS9lsDjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_fcxlAJ2BEemXg71wwI_kPA" base_Class="_fcsFcJ2BEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oy4_0J2BEemXg71wwI_kPA" base_StructuralFeature="_oy4YwJ2BEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xfVLgZ2BEemXg71wwI_kPA" base_StructuralFeature="_xfVLgJ2BEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_J6i3AJ2fEemXg71wwI_kPA" base_Class="_J6iP8J2fEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_kxXHcJ2qEemXg71wwI_kPA" base_Class="_kxWgYJ2qEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_2MzOIJ2rEemXg71wwI_kPA" base_StructuralFeature="_2MynEJ2rEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zknOc52sEemXg71wwI_kPA" base_StructuralFeature="_zknOcp2sEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zkq40J2sEemXg71wwI_kPA" base_StructuralFeature="_zkqRwJ2sEemXg71wwI_kPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_biomQKMJEemYd6Tamcc5WQ" base_StructuralFeature="_bin_MKMJEemYd6Tamcc5WQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bi0zgaMJEemYd6Tamcc5WQ" base_StructuralFeature="_bi0zgKMJEemYd6Tamcc5WQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_ZqtD8L6XEem4xcGs3yJOww" base_Class="_Zqsc4L6XEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NiuwEb6YEem4xcGs3yJOww" base_StructuralFeature="_NiuwEL6YEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_P-fn4b6YEem4xcGs3yJOww" base_StructuralFeature="_P-fn4L6YEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Wwr38b6ZEem4xcGs3yJOww" base_StructuralFeature="_Wwr38L6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WwttIb6ZEem4xcGs3yJOww" base_StructuralFeature="_WwttIL6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ucx50L6ZEem4xcGs3yJOww" base_StructuralFeature="_ucxSwr6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ucyg4b6ZEem4xcGs3yJOww" base_StructuralFeature="_ucyg4L6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vrpgs76ZEem4xcGs3yJOww" base_StructuralFeature="_vrpgsr6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vrqHwb6ZEem4xcGs3yJOww" base_StructuralFeature="_vrqHwL6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OYEjA76gEem4xcGs3yJOww" base_StructuralFeature="_OYEjAr6gEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OYFKEb6gEem4xcGs3yJOww" base_StructuralFeature="_OYFKEL6gEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_q2DKEb6hEem4xcGs3yJOww" base_StructuralFeature="_q2DKEL6hEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Fpm2sb6jEem4xcGs3yJOww" base_StructuralFeature="_Fpm2sL6jEem4xcGs3yJOww"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_FVS-MMBREem3GPFSfqjGLQ" base_StructuralFeature="_FVSXIMBREem3GPFSfqjGLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3ciCIcBREem3GPFSfqjGLQ" base_StructuralFeature="_3ciCIMBREem3GPFSfqjGLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mbMEkMpjEemxyP_sJGfnPA" base_StructuralFeature="_mbLdgMpjEemxyP_sJGfnPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6P160MpjEemxyP_sJGfnPA" base_StructuralFeature="_6P1TwMpjEemxyP_sJGfnPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9_9WcMpjEemxyP_sJGfnPA" base_StructuralFeature="_9_8vYMpjEemxyP_sJGfnPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aTIM8MprEemxyP_sJGfnPA" base_StructuralFeature="_aTHl4MprEemxyP_sJGfnPA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yJAAUM5lEemcqf4p4jcudw" base_StructuralFeature="_yI8V8M5lEemcqf4p4jcudw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XJtjwM8zEemfevCNCQbkKw" base_StructuralFeature="_XJrHgM8zEemfevCNCQbkKw"/>
  <OpenModel_Profile:Experimental xmi:id="_yV7dcM8zEemfevCNCQbkKw" base_Element="_T7JtYM6AEemcqf4p4jcudw"/>
  <OpenModel_Profile:Preliminary xmi:id="_dYBiUOU7Eem4RuIQi6fMsw" base_Element="_AkO5gF0VEemiOP02o5T8tA"/>
  <OpenModel_Profile:Preliminary xmi:id="_e7jxoOU7Eem4RuIQi6fMsw" base_Element="_h8AhkILoEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_hxhSIOU7Eem4RuIQi6fMsw" base_Element="_A_9MMF0VEemiOP02o5T8tA"/>
  <OpenModel_Profile:Preliminary xmi:id="_i-whUOU7Eem4RuIQi6fMsw" base_Element="_lo6SIILdEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_sWS4cOU7Eem4RuIQi6fMsw" base_Element="_U92FMILsEemyVus8T4NvCQ"/>
  <ActionLanguage:TextualRepresentation xmi:id="_tS-jIOU7Eem4RuIQi6fMsw" base_Comment="_tS31cOU7Eem4RuIQi6fMsw" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty"/>
  <OpenModel_Profile:Preliminary xmi:id="_w2ZmkOU7Eem4RuIQi6fMsw" base_Element="_VorK4ILsEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_yADWQOU7Eem4RuIQi6fMsw" base_Element="_W1j0wILsEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_zHL9cOU7Eem4RuIQi6fMsw" base_Element="_XJrHgM8zEemfevCNCQbkKw"/>
  <OpenModel_Profile:Preliminary xmi:id="_0vQugOU7Eem4RuIQi6fMsw" base_Element="_BZSSMF0VEemiOP02o5T8tA"/>
  <OpenModel_Profile:Preliminary xmi:id="_6X81UOU7Eem4RuIQi6fMsw" base_Element="_uTRv8IndEemVXsYTZj8frQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_-eEWIOU7Eem4RuIQi6fMsw" base_Element="_PrdukIncEemVXsYTZj8frQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_B_-9sOU8Eem4RuIQi6fMsw" base_Element="_qQWgYF0XEemiOP02o5T8tA"/>
  <OpenModel_Profile:Preliminary xmi:id="_EWlBoOU8Eem4RuIQi6fMsw" base_Element="_6LSTEF0XEemiOP02o5T8tA"/>
  <OpenModel_Profile:Preliminary xmi:id="_YupG8OU8Eem4RuIQi6fMsw" base_Element="_fcsFcJ2BEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_bZxQcOU8Eem4RuIQi6fMsw" base_Element="_oy4YwJ2BEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_dy65IOU8Eem4RuIQi6fMsw" base_Element="_xfVLgJ2BEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_gTCFcOU8Eem4RuIQi6fMsw" base_Element="_2MynEJ2rEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_ykLhkOU8Eem4RuIQi6fMsw" base_Element="_zkmnYJ2sEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_2dwbMOU8Eem4RuIQi6fMsw" base_Element="_WwqCwL6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_8RyPUOU8Eem4RuIQi6fMsw" base_Element="_Zqsc4L6XEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_-ZsXAOU8Eem4RuIQi6fMsw" base_Element="_NiuwEL6YEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_Ag7wUOU9Eem4RuIQi6fMsw" base_Element="_yI8V8M5lEemcqf4p4jcudw"/>
  <OpenModel_Profile:Preliminary xmi:id="_Cdx3gOU9Eem4RuIQi6fMsw" base_Element="_P-fn4L6YEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_EgPegOU9Eem4RuIQi6fMsw" base_Element="_FVSXIMBREem3GPFSfqjGLQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_HiDCoOU9Eem4RuIQi6fMsw" base_Element="_3ciCIMBREem3GPFSfqjGLQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_J0zIYOU9Eem4RuIQi6fMsw" base_Element="_mbLdgMpjEemxyP_sJGfnPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_PnxMkOU9Eem4RuIQi6fMsw" base_Element="_ucwrsL6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_R1u48OU9Eem4RuIQi6fMsw" base_Element="_J6iP8J2fEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_g3ExMOU9Eem4RuIQi6fMsw" base_Element="_q2DKEL6hEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_i-nFcOU9Eem4RuIQi6fMsw" base_Element="_6P1TwMpjEemxyP_sJGfnPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_k_VAAOU9Eem4RuIQi6fMsw" base_Element="_9_8vYMpjEemxyP_sJGfnPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Zz5M4OU-Eem4RuIQi6fMsw" base_Element="_OYD78L6gEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_d643cOU-Eem4RuIQi6fMsw" base_Element="_kxWgYJ2qEemXg71wwI_kPA"/>
  <OpenModel_Profile:Preliminary xmi:id="_gJk8kOU-Eem4RuIQi6fMsw" base_Element="_Fpm2sL6jEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_id_PMOU-Eem4RuIQi6fMsw" base_Element="_biUdMKMJEemYd6Tamcc5WQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_upD9kOVBEem4RuIQi6fMsw" base_Element="_rMIDEILdEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_wOwJAOVBEem4RuIQi6fMsw" base_Element="_1kyswILtEemyVus8T4NvCQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_msAxkOqeEemQocZcEjFuLQ" base_Element="_vro5oL6ZEem4xcGs3yJOww"/>
  <OpenModel_Profile:Preliminary xmi:id="_wlpJIOqeEemQocZcEjFuLQ" base_Element="_aTHl4MprEemxyP_sJGfnPA"/>
  <ActionLanguage:TextualRepresentation xmi:id="_xviwcOqeEemQocZcEjFuLQ" base_Comment="_xvYYYOqeEemQocZcEjFuLQ" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Be5ssO66EemJwbfAie9rjQ" base_Class="_Be5FoO66EemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_loxd4O66EemJwbfAie9rjQ" base_Element="_Be5FoO66EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nO9Yke66EemJwbfAie9rjQ" base_StructuralFeature="_nO9YkO66EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nO9_oe66EemJwbfAie9rjQ" base_StructuralFeature="_nO9_oO66EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_GEv7ke9sEemJwbfAie9rjQ" base_Class="_GEv7kO9sEemJwbfAie9rjQ"/>
  <OpenModel_Profile:Example xmi:id="_KU47EO9sEemJwbfAie9rjQ" base_Element="_GEv7kO9sEemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_Nggige9sEemJwbfAie9rjQ" base_Class="_NggigO9sEemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_IkxrgO9wEemJwbfAie9rjQ" base_Class="_IkxEcO9wEemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_S2ZFQO9wEemJwbfAie9rjQ" base_Element="_IkxEcO9wEemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_8Z4mge9wEemJwbfAie9rjQ" base_Class="_8Z4mgO9wEemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="__9cz4e9wEemJwbfAie9rjQ" base_Class="__9cz4O9wEemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aUSZMe97EemJwbfAie9rjQ" base_StructuralFeature="_aUSZMO97EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bq3xoO97EemJwbfAie9rjQ" base_StructuralFeature="_bq3KkO97EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cua5UO97EemJwbfAie9rjQ" base_StructuralFeature="_cuaSQO97EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kC1Foe98EemJwbfAie9rjQ" base_StructuralFeature="_kC1FoO98EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_guopo-9_EemJwbfAie9rjQ" base_StructuralFeature="_guopou9_EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gup3we9_EemJwbfAie9rjQ" base_StructuralFeature="_gup3wO9_EemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_DXxOkO-FEemJwbfAie9rjQ" base_Element="__9cz4O9wEemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_FB3_8O-FEemJwbfAie9rjQ" base_Element="_8Z4mgO9wEemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_HAJDcO-FEemJwbfAie9rjQ" base_Element="_vZ4k0O95EemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_JB3DkO-FEemJwbfAie9rjQ" base_Element="_xs3UEO95EemJwbfAie9rjQ"/>
  <OpenModel_Profile:Example xmi:id="_QiAH4PAMEembhOFQbDnUWw" base_Element="_NggigO9sEemJwbfAie9rjQ"/>
  <OpenModel_Profile:Experimental xmi:id="_SXg4APAMEembhOFQbDnUWw" base_Element="_nO6VQO66EemJwbfAie9rjQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sjsbkPANEembhOFQbDnUWw" base_StructuralFeature="_sjrNcPANEembhOFQbDnUWw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tmWycfANEembhOFQbDnUWw" base_StructuralFeature="_tmWycPANEembhOFQbDnUWw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_x_NCAPANEembhOFQbDnUWw" base_StructuralFeature="_x_Ma8PANEembhOFQbDnUWw"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_81_lYfANEembhOFQbDnUWw" base_Class="_81_lYPANEembhOFQbDnUWw"/>
  <OpenModel_Profile:Example xmi:id="_VbxoUPAOEembhOFQbDnUWw" base_Element="_81_lYPANEembhOFQbDnUWw"/>
</xmi:XMI>