commit f1340d38bdb93727ede4292aa3ccf246e993bce8 Author: huangwei <983142558@qq.com> Date: Wed Jul 31 09:55:12 2024 +0800 初始化项目 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d293cf1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +#git submodule update --init --recursive +*.hprof +build/ +.vscode/ +.gradle +/local.properties +/.idea +.DS_Store +/captures +/build +/app/build +/app/release +/app/mapping.txt +/app/src/main/libs +/app/src/main/obj +/controlapp/mapping.txt +/controlapp/release +/alpha/build +/alpha/release +/alpha/mapping.txt +/alpha/src/main/schemas/zone.a.dimap.db.RecordsDataBase/1.json +*.iml +.idea +*.jks +obj/ +.cxx/ +*.class +#定制版本 +/app/*/release +/alpha/*/release +/pad/*/release diff --git a/README.md b/README.md new file mode 100644 index 0000000..d592795 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +解放军信息工程导线助手 diff --git a/aar/base/base-release.aar b/aar/base/base-release.aar new file mode 100644 index 0000000..9983d9a Binary files /dev/null and b/aar/base/base-release.aar differ diff --git a/aar/base/build.gradle b/aar/base/build.gradle new file mode 100644 index 0000000..587b7c2 --- /dev/null +++ b/aar/base/build.gradle @@ -0,0 +1,2 @@ +configurations.maybeCreate("default") +artifacts.add("default", file('base-release.aar')) \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..3f08270 --- /dev/null +++ b/app/.gitignore @@ -0,0 +1,2 @@ +/build +*/release \ No newline at end of file diff --git a/app/README.md b/app/README.md new file mode 100644 index 0000000..8b72265 --- /dev/null +++ b/app/README.md @@ -0,0 +1,5 @@ +打包注意事项: +1.检查 Test.java 中的DEBUG是否为false; +2.检查 打包版本号; +3.检查数据库版本号; +4.检查changelog.xml内容 diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..4e9323d --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,147 @@ +import com.bingce.AndroidSdk +import com.bingce.AndroidX +import com.bingce.Libs +import com.bingce.ModuleName + +apply plugin: 'com.android.application' +apply plugin: 'org.jetbrains.kotlin.android' +apply plugin: 'kotlin-kapt' +apply plugin: 'kotlin-parcelize' + +android { + useLibrary Libs.httpLegacy + compileSdk AndroidSdk.compileSdkVersion + namespace "com.project.survey" + + defaultConfig { + minSdkVersion AndroidSdk.minSdkVersion + targetSdkVersion AndroidSdk.targetSdkVersion + ndk {} + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + multiDexEnabled true + + javaCompileOptions { + annotationProcessorOptions { + arguments = [ + //数据库room + "room.schemaLocation": "$projectDir/src/main/schemas".toString() + ] + } + } + } + + buildFeatures { + viewBinding true + buildConfig true + } + + signingConfigs { + debug { + storeFile file('./debug.keystore') + } + } + + + buildTypes { + debug { + signingConfig signingConfigs.debug + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + release { + minifyEnabled true + shrinkResources true + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + + splits { + // Split apks on build target ABI, view all options for the splits here: + // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits + abi { + enable true + reset() + include 'arm64-v8a', 'armeabi-v7a'//,'armeabi-v7a', 'x86'//, 'x86_64', 'mips','armeabi', + } + } + + //为了解决部分第三方库重复打包了META-INF的问题 + packagingOptions { + exclude 'META-INF/DEPENDENCIES' + exclude 'META-INF/LICENSE.txt' + exclude 'META-INF/NOTICE.txt' + exclude 'META-INF/LICENSE' + exclude 'META-INF/NOTICE' + + exclude 'META-INF/*.kotlin_module' + exclude '/META-INF/{AL2.0,LGPL2.1}'//适配compose + } + + lintOptions { + abortOnError false + disable 'GoogleAppIndexingWarning' + } +} + +dependencies { + implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs') + + def moduleName = new ModuleName(project) + implementation project(moduleName.bingceModule("appBase")) + implementation project(moduleName.bingceModule("repository")) + implementation project(moduleName.bingceModule("base")) +// implementation project(moduleName.bingceModule("leancloud")) + implementation project(moduleName.bingceModule("base-java")) + implementation project(moduleName.bingceModule("utils")) + implementation project(moduleName.bingceModule("coordlib")) + implementation project(moduleName.bingceModule("device")) + implementation project(moduleName.bingceModule("device-ui")) + implementation project(moduleName.bingceModule("rtk")) + implementation project(moduleName.bingceModule("totalstation")) + implementation project(moduleName.bingceModule("level")) + implementation project(moduleName.bingceModule("bcdialog-style")) + implementation project(moduleName.openSourceModule("utilcode")) + implementation project(moduleName.openSourceModule("colorful"))//选择主题颜色 + implementation project(moduleName.openSourceModule("dragExpandGrid"))//管理里的布局 + implementation project(moduleName.openSourceModule("lsettingitemlibrary"))//用户信息里 + implementation project(moduleName.openSourceModule("spinkit"))//loading控件 导出使用 + implementation project(moduleName.openSourceModule("splashview"))//广告view + implementation project(moduleName.openSourceModule("poishadowjar"))//导入excel + implementation project(moduleName.openSourceModule("safFilePicker"))//选择文件 + implementation project(moduleName.openSourceModule("fastjson")) + implementation project(moduleName.openSourceModule("agentweb")) + implementation project(":opensource:exFilePicker") + implementation project(":sdk:tensorFlowTTS")//语音播报 + implementation Libs.RxImagePicker.core +// implementation Libs.RxImagePicker.support +// implementation Libs.RxImagePicker.supportWechat + + constraints { + implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10") { + because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib") + } + implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10") { + because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib") + } + } + +// implementation "cn.leancloud:storage-android:8.2.5" +// implementation "cn.leancloud:realtime-android:8.2.5" + implementation Libs.LeanCloud.storage + implementation Libs.LeanCloud.realtime + implementation AndroidX.multidex + implementation AndroidX.material + implementation AndroidX.appcompat + + testImplementation "junit:junit:4.13.2" + androidTestImplementation "androidx.test:runner:1.1.0" + androidTestImplementation "androidx.test:rules:1.1.0" + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' + + implementation 'com.google.android.gms:play-services-auth:20.7.0' + + + implementation Libs.flycoTabLayout + + +} \ No newline at end of file diff --git a/app/debug.keystore b/app/debug.keystore new file mode 100644 index 0000000..5bb84af Binary files /dev/null and b/app/debug.keystore differ diff --git a/app/doc/Untitled-old.mdj b/app/doc/Untitled-old.mdj new file mode 100644 index 0000000..c83fd9d --- /dev/null +++ b/app/doc/Untitled-old.mdj @@ -0,0 +1,44 @@ +{ + "_type": "Project", + "_id": "AAAAAAFF+h6SjaM2Hec=", + "name": "Untitled", + "ownedElements": [ + { + "_type": "UMLModel", + "_id": "AAAAAAFF+qBWK6M3Z8Y=", + "_parent": { + "$ref": "AAAAAAFF+h6SjaM2Hec=" + }, + "name": "Model", + "ownedElements": [ + { + "_type": "UMLStateMachine", + "_id": "AAAAAAF5RXOA7okfG2A=", + "_parent": { + "$ref": "AAAAAAFF+qBWK6M3Z8Y=" + }, + "name": "StateMachine1", + "ownedElements": [ + { + "_type": "UMLStatechartDiagram", + "_id": "AAAAAAF5RXOA7okhiTg=", + "_parent": { + "$ref": "AAAAAAF5RXOA7okfG2A=" + }, + "name": "StatechartDiagram1" + } + ], + "regions": [ + { + "_type": "UMLRegion", + "_id": "AAAAAAF5RXOA7okgaKU=", + "_parent": { + "$ref": "AAAAAAF5RXOA7okfG2A=" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/app/doc/states.mdj b/app/doc/states.mdj new file mode 100644 index 0000000..fa3a069 --- /dev/null +++ b/app/doc/states.mdj @@ -0,0 +1,36869 @@ +{ + "_type": "Project", + "_id": "AAAAAAFElm5XMFNoGY0=", + "name": "Untitled", + "ownedElements": [ + { + "_type": "UMLModel", + "_id": "AAAAAAFElm6BOFNpegQ=", + "_parent": { + "$ref": "AAAAAAFElm5XMFNoGY0=" + }, + "name": "Model", + "ownedElements": [ + { + "_type": "UMLUseCaseDiagram", + "_id": "AAAAAAF5P5m6Qk1jVXQ=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "UseCaseDiagram1", + "ownedViews": [ + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P5nMr01oLTI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P5nMr01pxLs=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01qZlQ=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 224, + "top": 352, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01rWkA=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "font": "Arial;13;1", + "left": 132, + "top": 187.5, + "width": 62, + "height": 13, + "text": "check2C" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01srVY=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 224, + "top": 352, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01tKAI=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 224, + "top": 352, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 127, + "top": 180.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5nMr01qZlQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P5nMr01rWkA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P5nMr01srVY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5nMr01tKAI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P5nMr01u10s=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P5nMr01vn/8=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5nMr01wvTc=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P5nMr01xNvU=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P5nMr01yEgM=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": 176, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 112, + "top": 176, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P5nMr01u10s=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P5nMr01vn/8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5nMr01wvTc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P5nMr01xNvU=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P5nMr01yEgM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P5rmBE2YaOM=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P5rmBE2Z1VU=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P5rmBE2awCc=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2Z1VU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -112, + "top": -368, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5rmBE2bxgA=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2Z1VU=" + }, + "font": "Arial;13;1", + "left": 367, + "top": 83.5, + "width": 75, + "height": 13, + "text": "recordClean" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5rmBU2c6aQ=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2Z1VU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -112, + "top": -368, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5rmBU2dJfU=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2Z1VU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -112, + "top": -368, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 362, + "top": 76.5, + "width": 85.86083984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5rmBE2awCc=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P5rmBE2bxgA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P5rmBU2c6aQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5rmBU2dJfU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P5rmBU2e6A8=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -56, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P5rmBU2f+Vc=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -56, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5rmBU2gXnU=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -56, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P5rmBU2hbLU=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -56, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P5rmBU2iePg=", + "_parent": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "model": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -56, + "top": -184, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 344, + "top": 72, + "width": 121, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P5rmBE2Z1VU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P5rmBU2e6A8=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P5rmBU2f+Vc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5rmBU2gXnU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P5rmBU2hbLU=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P5rmBU2iePg=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P5saWE3J2FY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3K1ts=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "font": "Arial;13;0", + "left": 248, + "top": 121, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 1, + "text": "+通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3LIi0=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 271, + "top": 107, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3M7xA=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 288, + "top": 148, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3NmNI=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 221, + "top": 144, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3Oy1k=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 218, + "top": 131, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3PZiY=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 228, + "top": 171, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3QKR0=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 332, + "top": 97, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3RVpc=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 324, + "top": 86, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3S3i0=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 347, + "top": 121, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5saWE3TepE=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5saWE3U3g4=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5rmBE2YaOM=" + }, + "tail": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "lineStyle": 1, + "points": "204:175;362:107", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P5saWE3K1ts=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5saWE3LIi0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5saWE3M7xA=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P5saWE3NmNI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P5saWE3Oy1k=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P5saWE3PZiY=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P5saWE3QKR0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P5saWE3RVpc=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P5saWE3S3i0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P5saWE3TepE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P5saWE3U3g4=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P56LZE6M/G8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P56LZE6NeNY=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6OE2I=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -464, + "top": -224, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6PKW0=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 205, + "top": 283.5, + "width": 103, + "height": 13, + "text": "【用户选择操作】" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6QSXM=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -464, + "top": -224, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6RMmU=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -464, + "top": -224, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 200, + "top": 276.5, + "width": 114, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P56LZE6OE2I=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P56LZE6PKW0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P56LZE6QSXM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P56LZE6RMmU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P56LZE6SLIg=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P56LZE6TWFg=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P56LZE6U8ts=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P56LZE6VNIk=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P56LZE6W1sE=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 176, + "top": 272, + "width": 161, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P56LZE6SLIg=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P56LZE6TWFg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P56LZE6U8ts=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P56LZE6VNIk=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P56LZE6W1sE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P56tgE7IY7E=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7JO9U=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "font": "Arial;13;0", + "left": 183, + "top": 224, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7Kkjk=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 230, + "top": 214, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7LlPE=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 198, + "top": 245, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7MSF4=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 208, + "top": 213, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7NsLs=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 219, + "top": 205, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7OBww=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 186, + "top": 229, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7PoMY=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 230, + "top": 235, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7Q0NM=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 238, + "top": 225, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7RtW8=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 213, + "top": 258, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P56tgE7SCeE=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P56tgE7TSmw=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "tail": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "lineStyle": 1, + "points": "180:211;238:271", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P56tgE7JO9U=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P56tgE7Kkjk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P56tgE7LlPE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P56tgE7MSF4=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P56tgE7NsLs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P56tgE7OBww=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P56tgE7PoMY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P56tgE7Q0NM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P56tgE7RtW8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P56tgE7SCeE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P56tgE7TSmw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P5/CAk98zZc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P5/CAk99r9g=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA09+uJY=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 64, + "top": -64, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA09/h4M=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "font": "Arial;13;1", + "left": 764, + "top": 467.5, + "width": 62, + "height": 13, + "text": "Idle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA0+AvMQ=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 64, + "top": -64, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA0+BODA=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 64, + "top": -64, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 759, + "top": 460.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5/CA09+uJY=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P5/CA09/h4M=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P5/CA0+AvMQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5/CA0+BODA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P5/CA0+CFD4=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 32, + "top": -32, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P5/CA0+DO7Q=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 32, + "top": -32, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5/CA0+EZ7w=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 32, + "top": -32, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P5/CA0+FMSM=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 32, + "top": -32, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P5/CA0+GOcA=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 32, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 744, + "top": 456, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P5/CA0+CFD4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P5/CA0+DO7Q=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5/CA0+EZ7w=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P5/CA0+FMSM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P5/CA0+GOcA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P5/ask/ENuY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/FCi8=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "font": "Arial;13;0", + "left": 300, + "top": 372, + "width": 124.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 1, + "text": "+选择忽略or重测目标" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/GmBY=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 373, + "top": 362, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/H9Os=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 341, + "top": 393, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/ITgo=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 301, + "top": 309, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/J3dw=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 312, + "top": 301, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/KH+Q=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 279, + "top": 325, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/LwxI=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 424, + "top": 435, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/MCSM=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 425, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/N7rw=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 407, + "top": 458, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5/ask/OUQY=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5/ask/P3tM=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "lineStyle": 1, + "points": "273:307;432:471", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P5/ask/FCi8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5/ask/GmBY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5/ask/H9Os=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P5/ask/ITgo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P5/ask/J3dw=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P5/ask/KH+Q=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P5/ask/LwxI=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P5/ask/MCSM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P5/ask/N7rw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P5/ask/OUQY=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P5/ask/P3tM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P6Btl1DS04s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P6Btl1DTuQ4=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P6Btl1DUbE8=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -1072, + "top": 160, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6BtmFDVnHI=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 74.5, + "top": 411.5, + "width": 207, + "height": 13, + "text": "【提示用户是否确定删除整个测回】" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6BtmFDW1Rc=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -1072, + "top": 160, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6BtmFDXJZ4=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -1072, + "top": 160, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 69.5, + "top": 404.5, + "width": 218, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6Btl1DUbE8=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P6BtmFDVnHI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P6BtmFDW1Rc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6BtmFDXJZ4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P6BtmFDYzoo=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P6BtmFDZfOA=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P6BtmFDabNE=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P6BtmFDbcVg=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P6BtmFDcrag=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 24, + "top": 400, + "width": 308, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P6BtmFDYzoo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P6BtmFDZfOA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P6BtmFDabNE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P6BtmFDbcVg=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P6BtmFDcrag=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6ETu1Fw08c=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFFx1mw=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "font": "Arial;13;0", + "left": 199, + "top": 354, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 1, + "text": "+重测测回" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFFyw0s=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 241, + "top": 362, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFFzyRs=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 203, + "top": 339, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF0+lY=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 244, + "top": 330, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF1ok8=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 254, + "top": 339, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF2wKI=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 222, + "top": 312, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF3tbw=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 214, + "top": 378, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF4Oc0=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 226, + "top": 383, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF586k=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 188, + "top": 368, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6ETvFF6xek=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6ETvFF7szs=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "tail": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "lineStyle": 1, + "points": "245:307;188:399", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6ETvFFx1mw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6ETvFFyw0s=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6ETvFFzyRs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6ETvFF0+lY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6ETvFF1ok8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6ETvFF2wKI=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6ETvFF3tbw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6ETvFF4Oc0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6ETvFF586k=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6ETvFF6xek=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6ETvFF7szs=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6HZl1JC23Y=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JDZsQ=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "font": "Arial;13;0", + "left": 267, + "top": 432, + "width": 98.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 1, + "text": "+选择忽略or取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JECIw=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 320, + "top": 417, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JF8pk=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 309, + "top": 461, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JG0HA=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 273, + "top": 421, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JHztQ=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 279, + "top": 408, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JIPD0=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 262, + "top": 446, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JJLUs=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 359, + "top": 443, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JKFgU=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 360, + "top": 430, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JLM+Y=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 356, + "top": 471, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6HZl1JMru0=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6HZl1JNqZA=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "lineStyle": 1, + "points": "245:435;381:471", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6HZl1JDZsQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6HZl1JECIw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6HZl1JF8pk=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6HZl1JG0HA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6HZl1JHztQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6HZl1JIPD0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6HZl1JJLUs=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6HZl1JKFgU=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6HZl1JLM+Y=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6HZl1JMru0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6HZl1JNqZA=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P6IYDFMMeFQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P6IYDFMNnzQ=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDFMOOjk=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -1536, + "top": 544, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDVMPgvc=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 125, + "top": 531.5, + "width": 103, + "height": 13, + "text": "【执行删除操作】" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDVMQezU=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -1536, + "top": 544, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDVMRBdM=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -1536, + "top": 544, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 120, + "top": 524.5, + "width": 114, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6IYDFMOOjk=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P6IYDVMPgvc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P6IYDVMQezU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6IYDVMRBdM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P6IYDVMSZQE=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P6IYDVMTe6E=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P6IYDVMUviY=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P6IYDVMVT7Q=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P6IYDVMWeEE=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 96, + "top": 520, + "width": 161, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P6IYDVMSZQE=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P6IYDVMTe6E=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P6IYDVMUviY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P6IYDVMVT7Q=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P6IYDVMWeEE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6Jc6FQAXTQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6FQBsAA=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "font": "Arial;13;0", + "left": 161, + "top": 470, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 1, + "text": "+确认删除" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6FQCliU=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 205, + "top": 470, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6FQDs0Y=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 161, + "top": 471, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQErUI=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 191, + "top": 455, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQFXc4=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 204, + "top": 457, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQGACw=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 164, + "top": 450, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQH5rw=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 191, + "top": 487, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQIDDY=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 204, + "top": 485, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQJXs0=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 163, + "top": 491, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6Jc6VQKiwE=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6Jc6VQLymI=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "tail": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "lineStyle": 1, + "points": "177:435;176:519", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6Jc6FQBsAA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6Jc6FQCliU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6Jc6FQDs0Y=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6Jc6VQErUI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6Jc6VQFXc4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6Jc6VQGACw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6Jc6VQH5rw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6Jc6VQIDDY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6Jc6VQJXs0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6Jc6VQKiwE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6Jc6VQLymI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6KuWFYy590=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFYzBrY=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 409, + "top": 536, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY07+U=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 410, + "top": 521, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY1T2M=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 406, + "top": 565, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY2uTU=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 284, + "top": 525, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY3Q0s=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 287, + "top": 512, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY4NMQ=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 277, + "top": 552, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY5sZg=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 534, + "top": 547, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY62Oo=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 533, + "top": 534, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY78L8=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 536, + "top": 575, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6KuWFY8wFs=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 376, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6KuWVY9b40=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 376, + "top": -144, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "lineStyle": 1, + "points": "257:544;559:571", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6KuWFYzBrY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6KuWFY07+U=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6KuWFY1T2M=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6KuWFY2uTU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6KuWFY3Q0s=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6KuWFY4NMQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6KuWFY5sZg=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6KuWFY62Oo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6KuWFY78L8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6KuWFY8wFs=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6KuWVY9b40=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJWvCwgzk0M=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJWvCwg0EPw=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg1NpM=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 2032, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg2wKE=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "font": "Arial;13;1", + "left": 1144, + "top": 1419.5, + "width": 119, + "height": 13, + "text": "move2NextValidate" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg3lvo=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 2032, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg4tCw=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 2032, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1139, + "top": 1412.5, + "width": 129, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJWvCwg1NpM=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJWvCwg2wKE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJWvCwg3lvo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJWvCwg4tCw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJWvCwg5PfY=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 352, + "top": 1016, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJWvDAg6ClE=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 352, + "top": 1016, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJWvDAg7Ros=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 352, + "top": 1016, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJWvDAg8tC0=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 352, + "top": 1016, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJWvDAg9Vl8=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 352, + "top": 1016, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1112, + "top": 1408, + "width": 183, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJWvCwg5PfY=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJWvDAg6ClE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJWvDAg7Ros=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJWvDAg8tC0=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJWvDAg9Vl8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJc4CA2oNI0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJc4CA2p+Dw=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJc4CA2qdmU=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2p+Dw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1808, + "top": -848, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJc4CA2r3po=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2p+Dw=" + }, + "font": "Arial;13;1", + "left": 1081, + "top": 339.5, + "width": 124, + "height": 13, + "text": "checkHalfCycleZero" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJc4CA2s9SY=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2p+Dw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1808, + "top": -848, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJc4CA2tVXo=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2p+Dw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1808, + "top": -848, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1076, + "top": 332.5, + "width": 134.28076171875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJc4CA2qdmU=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJc4CA2r3po=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJc4CA2s9SY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJc4CA2tVXo=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJc4CA2uA/U=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 904, + "top": -424, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJc4CQ2vtIA=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 904, + "top": -424, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJc4CQ2wvoY=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 904, + "top": -424, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJc4CQ2xB7c=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 904, + "top": -424, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJc4CQ2yPQg=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "model": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 904, + "top": -424, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1048, + "top": 328, + "width": 190, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJc4CA2p+Dw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJc4CA2uA/U=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJc4CQ2vtIA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJc4CQ2wvoY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJc4CQ2xB7c=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJc4CQ2yPQg=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJeXAw9Y7Yc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJeXAw9Z7G0=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJeXAw9azp8=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Z7G0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1936, + "top": -752, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJeXAw9b8aE=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Z7G0=" + }, + "font": "Arial;13;1", + "left": 1469, + "top": 219.5, + "width": 105, + "height": 13, + "text": "isReady2CCheck" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJeXAw9cphk=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Z7G0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1936, + "top": -752, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJeXAw9dhRA=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Z7G0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1936, + "top": -752, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1464, + "top": 212.5, + "width": 115.498046875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJeXAw9azp8=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJeXAw9b8aE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJeXAw9cphk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJeXAw9dhRA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJeXAw9eiUw=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 968, + "top": -376, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJeXAw9fQSo=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 968, + "top": -376, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJeXAw9gktM=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 968, + "top": -376, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJeXAw9hx78=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 968, + "top": -376, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJeXAw9iEQ8=", + "_parent": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "model": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 968, + "top": -376, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1440, + "top": 208, + "width": 163, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJeXAw9Z7G0=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJeXAw9eiUw=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJeXAw9fQSo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJeXAw9gktM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJeXAw9hx78=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJeXAw9iEQ8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJesYRAYGmw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYRAZQUY=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "font": "Arial;13;0", + "left": 1232, + "top": 264, + "width": 189.2279815673828, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 1, + "text": "+测站不闭合or半测回归零差正常" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYRAa+X8=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1321, + "top": 250, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYRAb41g=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1335, + "top": 293, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAcFHE=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1219, + "top": 298, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAdnH8=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1217, + "top": 285, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAeLA0=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1223, + "top": 326, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAfocQ=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1434, + "top": 230, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAgNDY=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1428, + "top": 218, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAh4Q4=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1447, + "top": 255, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJesYhAiBdg=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJesYhAjzjQ=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": -144, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJeXAw9Y7Yc=" + }, + "tail": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "lineStyle": 1, + "points": "1199:327;1464:243", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJesYRAZQUY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJesYRAa+X8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJesYRAb41g=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJesYhAcFHE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJesYhAdnH8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJesYhAeLA0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJesYhAfocQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJesYhAgNDY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJesYhAh4Q4=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJesYhAiBdg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJesYhAjzjQ=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJjLZRML/gk=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJjLZRMMO54=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMN0eQ=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 32, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMOGnw=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 380, + "top": 483.5, + "width": 139, + "height": 13, + "text": "switchState2StandStill" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMPJsQ=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 32, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMQZsw=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 32, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 375, + "top": 476.5, + "width": 149.419921875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJjLZRMN0eQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJjLZRMOGnw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJjLZRMPJsQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJjLZRMQZsw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJjLZRMRZxg=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -48, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJjLZRMSuGM=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -48, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJjLZRMTa74=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -48, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJjLZRMUk04=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -48, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJjLZRMVcTY=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -48, + "top": 16, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 344, + "top": 472, + "width": 211, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJjLZRMRZxg=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJjLZRMSuGM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJjLZRMTa74=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJjLZRMUk04=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJjLZRMVcTY=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJk5ohVYjKI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJk5ohVZ7LA=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVaBvo=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 528, + "top": -368, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVbtSw=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 669, + "top": 387.5, + "width": 142, + "height": 13, + "text": "提示半测回归零检测失败" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVc1ns=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 528, + "top": -368, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVdnqY=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 528, + "top": -368, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 664, + "top": 380.5, + "width": 153, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJk5ohVaBvo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJk5ohVbtSw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJk5ohVc1ns=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJk5ohVdnqY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJk5ohVeC3M=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 264, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJk5ohVfd1M=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 264, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJk5ohVg6Qc=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 264, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJk5ohVh4ZY=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 264, + "top": -184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJk5ohViitY=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 264, + "top": -184, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 632, + "top": 376, + "width": 216, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJk5ohVeC3M=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJk5ohVfd1M=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJk5ohVg6Qc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJk5ohVh4ZY=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJk5ohViitY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJmQwBdwdmk=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwBdxb3k=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "font": "Arial;13;0", + "left": 906, + "top": 376, + "width": 85.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 1, + "text": "+没有通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRdyFDg=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 950, + "top": 391, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRdzOi4=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 945, + "top": 347, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd0cxc=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1023, + "top": 368, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd1+jk=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1022, + "top": 381, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd2je8=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1024, + "top": 340, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd3aOM=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 875, + "top": 385, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd4cEI=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 879, + "top": 398, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd5h7I=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 867, + "top": 358, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJmQwRd6XO0=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJmQwRd7bPQ=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "tail": { + "$ref": "AAAAAAF5QJc4CA2oNI0=" + }, + "lineStyle": 1, + "points": "1047:356;848:380", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJmQwBdxb3k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJmQwRdyFDg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJmQwRdzOi4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJmQwRd0cxc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJmQwRd1+jk=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJmQwRd2je8=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJmQwRd3aOM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJmQwRd4cEI=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJmQwRd5h7I=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJmQwRd6XO0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJmQwRd7bPQ=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJnHsRkO52k=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkPXt4=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 598, + "top": 449, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkQg5M=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 603, + "top": 463, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkRfd8=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 589, + "top": 420, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkS/7E=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 665, + "top": 427, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkTUvo=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 666, + "top": 440, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkU2kA=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 660, + "top": 399, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkVrbg=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 532, + "top": 471, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkWL5A=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 538, + "top": 483, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkXIlE=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 519, + "top": 446, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnHsRkYjF0=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnHsRkZRp4=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "lineStyle": 1, + "points": "685:411;503:471", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJnHsRkPXt4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJnHsRkQg5M=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJnHsRkRfd8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJnHsRkS/7E=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJnHsRkTUvo=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJnHsRkU2kA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJnHsRkVrbg=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJnHsRkWL5A=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJnHsRkXIlE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJnHsRkYjF0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJnHsRkZRp4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJnk3hnngQ0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnoFuM=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 648, + "top": 458, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnpzsU=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 647, + "top": 443, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnqowI=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 649, + "top": 487, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnr2A8=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 580, + "top": 461, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnsPz4=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 581, + "top": 448, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnt7X0=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 577, + "top": 489, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnuPbw=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 716, + "top": 455, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnvOwA=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 713, + "top": 442, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnwvuU=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 721, + "top": 482, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnk3hnxCbA=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnk3hny8xs=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "lineStyle": 1, + "points": "555:484;743:475", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJnk3hnoFuM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJnk3hnpzsU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJnk3hnqowI=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJnk3hnr2A8=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJnk3hnsPz4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJnk3hnt7X0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJnk3hnuPbw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJnk3hnvOwA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJnk3hnwvuU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJnk3hnxCbA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJnk3hny8xs=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJ6ahiPXyXI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJ6ahiPYzM0=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahiPZdhA=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 208, + "top": -896, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahiPa2BQ=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "font": "Arial;13;1", + "left": 795.5, + "top": 123.5, + "width": 96, + "height": 13, + "text": "checkReadData" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahyPb1CY=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 208, + "top": -896, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahyPcSJM=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 208, + "top": -896, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 790.5, + "top": 116.5, + "width": 106.8271484375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ6ahiPZdhA=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJ6ahiPa2BQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJ6ahyPb1CY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ6ahyPcSJM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJ6ahyPdwvQ=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 104, + "top": -448, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJ6ahyPeius=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 104, + "top": -448, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJ6ahyPfDuE=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 104, + "top": -448, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJ6ahyPgVJE=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 104, + "top": -448, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJ6ahyPhyOw=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 104, + "top": -448, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 768, + "top": 112, + "width": 151, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJ6ahyPdwvQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJ6ahyPeius=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJ6ahyPfDuE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJ6ahyPgVJE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJ6ahyPhyOw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJ8m8Sf6ofY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJ8m8Sf7JBU=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf8/hc=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1088, + "top": -1280, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf9x9A=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "font": "Arial;13;1", + "left": 1044, + "top": 107.5, + "width": 175, + "height": 13, + "text": "isHalfCycleZeroCheckReady" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf+ddw=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1088, + "top": -1280, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf/cbI=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1088, + "top": -1280, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1039, + "top": 100.5, + "width": 186.2998046875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ8m8Sf8/hc=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJ8m8Sf9x9A=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJ8m8Sf+ddw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ8m8Sf/cbI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJ8m8SgAs+Y=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 544, + "top": -640, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJ8m8SgBoKU=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 544, + "top": -640, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJ8m8SgCMgY=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 544, + "top": -640, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJ8m8SgDeic=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 544, + "top": -640, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJ8m8SgEIBM=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 544, + "top": -640, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1000, + "top": 96, + "width": 263, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJ8m8SgAs+Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJ8m8SgBoKU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJ8m8SgCMgY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJ8m8SgDeic=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJ8m8SgEIBM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJ87PCkCJ2c=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkD2ew=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "font": "Arial;13;0", + "left": 903, + "top": 101, + "width": 111.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 1, + "text": "+单测量or通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkEHYk=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 957, + "top": 86, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkFD0M=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 959, + "top": 130, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkGBOM=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 943, + "top": 102, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkHciQ=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 945, + "top": 89, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkI53k=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 941, + "top": 130, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkJ5DY=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 972, + "top": 100, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkKd2s=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 969, + "top": 87, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkLnCE=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 978, + "top": 127, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ87PCkMizE=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ87PCkNuH0=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "tail": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "lineStyle": 1, + "points": "919:125;999:120", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJ87PCkD2ew=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ87PCkEHYk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ87PCkFD0M=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJ87PCkGBOM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJ87PCkHciQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJ87PCkI53k=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJ87PCkJ5DY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJ87PCkKd2s=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJ87PCkLnCE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJ87PCkMizE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJ87PCkNuH0=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJ+mRitZ0H0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJ+mRitad0o=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRitbxtk=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 544, + "top": -784, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRytcRUc=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 591.5, + "top": 179.5, + "width": 77, + "height": 13, + "text": "提示读数有误" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRytdKoM=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 544, + "top": -784, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRytecXk=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 544, + "top": -784, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 586.5, + "top": 172.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ+mRitbxtk=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJ+mRytcRUc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJ+mRytdKoM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ+mRytecXk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJ+mRytf9wc=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 272, + "top": -392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJ+mRytgl/8=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 272, + "top": -392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJ+mRythGBg=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 272, + "top": -392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJ+mRytiPDo=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 272, + "top": -392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJ+mRytjdZM=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 272, + "top": -392, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 568, + "top": 168, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJ+mRytf9wc=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJ+mRytgl/8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJ+mRythGBg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJ+mRytiPDo=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJ+mRytjdZM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJ/UgywlH50=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/Ugywm6Cw=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "font": "Arial;13;0", + "left": 700, + "top": 166, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UgywnNpM=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 740, + "top": 180, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UgywoaZM=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 729, + "top": 137, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwpjOU=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": 162, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwqyBI=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 754, + "top": 175, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwrLDA=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 749, + "top": 134, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCws+Vw=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 720, + "top": 170, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwtL5c=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 726, + "top": 182, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwuYNo=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 709, + "top": 145, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/UhCwvaPk=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/UhCwwUDY=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "tail": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "lineStyle": 1, + "points": "774:147;692:169", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJ/Ugywm6Cw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ/UgywnNpM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ/UgywoaZM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJ/UhCwpjOU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJ/UhCwqyBI=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/UhCwrLDA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJ/UhCws+Vw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJ/UhCwtL5c=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/UhCwuYNo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/UhCwvaPk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/UhCwwUDY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJ/0PC0CShY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0DtlQ=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 551, + "top": 338, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0ETCk=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 564, + "top": 346, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0FS9M=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 526, + "top": 323, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0G2RA=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 617, + "top": 226, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0HEgs=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 628, + "top": 235, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0IKu8=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 596, + "top": 209, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0JtjU=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 486, + "top": 450, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0KkBY=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 498, + "top": 454, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0LEUU=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 460, + "top": 440, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/0PS0MAmo=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/0PS0Nb0Y=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "lineStyle": 1, + "points": "618:203;460:471", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJ/0PS0DtlQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ/0PS0ETCk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ/0PS0FS9M=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJ/0PS0G2RA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJ/0PS0HEgs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/0PS0IKu8=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJ/0PS0JtjU=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJ/0PS0KkBY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/0PS0LEUU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/0PS0MAmo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/0PS0Nb0Y=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKE6Ojfzjv0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKE6Ojf0W9Y=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf12Ns=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1472, + "top": 352, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf2D5I=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "font": "Arial;13;1", + "left": 1342, + "top": 1123.5, + "width": 110, + "height": 13, + "text": "checkSingleCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf3N+g=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1472, + "top": 352, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf4rrM=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1472, + "top": 352, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1337, + "top": 1116.5, + "width": 120.55712890625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKE6Ojf12Ns=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKE6Ojf2D5I=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKE6Ojf3N+g=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKE6Ojf4rrM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKE6Ojf5X6A=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 736, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKE6Ojf6i5o=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 736, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKE6Ojf7hDo=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 736, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKE6Ojf8oq8=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 736, + "top": 176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKE6Ojf9edk=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 736, + "top": 176, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1312, + "top": 1112, + "width": 170, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKE6Ojf5X6A=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKE6Ojf6i5o=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKE6Ojf7hDo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKE6Ojf8oq8=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKE6Ojf9edk=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKIG+T9Y4ko=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKIG+T9Zl2o=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9a7vU=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1408, + "top": 544, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9bDug=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "font": "Arial;13;1", + "left": 1386, + "top": 1299.5, + "width": 129, + "height": 13, + "text": "isAllCycleCompleted" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9cIfM=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1408, + "top": 544, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9dArI=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1408, + "top": 544, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1381, + "top": 1292.5, + "width": 139.314453125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKIG+T9a7vU=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKIG+T9bDug=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKIG+T9cIfM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKIG+T9dArI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKIG+T9e1Wk=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKIG+T9fRvU=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKIG+T9gBhM=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKIG+T9hA48=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKIG+T9inVI=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 704, + "top": 272, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1352, + "top": 1288, + "width": 197, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKIG+T9e1Wk=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKIG+T9fRvU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKIG+T9gBhM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKIG+T9hA48=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKIG+T9inVI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QKI4zEKHpSc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKIQ1c=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "font": "Arial;13;0", + "left": 1408, + "top": 1206, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 1, + "text": "+通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKJdn8=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1451, + "top": 1202, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKKTG0=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1408, + "top": 1215, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKL0+I=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1423, + "top": 1161, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKMDrE=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1437, + "top": 1159, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKNoT0=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1396, + "top": 1165, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKOx2g=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1450, + "top": 1251, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKP85E=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1462, + "top": 1245, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKQLJU=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1425, + "top": 1263, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKI4zEKR1Nc=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKI4zEKSZgo=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "tail": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "lineStyle": 1, + "points": "1402:1147;1444:1287", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QKI4zEKIQ1c=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKI4zEKJdn8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKI4zEKKTG0=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QKI4zEKL0+I=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QKI4zEKMDrE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QKI4zEKNoT0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QKI4zEKOx2g=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QKI4zEKP85E=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QKI4zEKQLJU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QKI4zEKR1Nc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QKI4zEKSZgo=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKuCwkzY630=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKuCwkzZLtk=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzadw4=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1872, + "top": 48, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzbRGU=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 1463.5, + "top": 963.5, + "width": 77, + "height": 13, + "text": "提示用户选择" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzc5kQ=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1872, + "top": 48, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzd3VI=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1872, + "top": 48, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1458.5, + "top": 956.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKuCwkzadw4=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKuCwkzbRGU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKuCwkzc5kQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKuCwkzd3VI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKuCw0zeMMo=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 936, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKuCw0zfhJM=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 936, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKuCw0zgO20=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 936, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKuCw0zhG3k=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 936, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKuCw0ziN7I=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 936, + "top": 24, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1440, + "top": 952, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKuCw0zeMMo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKuCw0zfhJM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKuCw0zgO20=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKuCw0zhG3k=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKuCw0ziN7I=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QKvMIE8ZF/E=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8a1To=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "font": "Arial;13;0", + "left": 1399, + "top": 1034, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8bx7Y=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1422, + "top": 1026, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8c/MU=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1460, + "top": 1051, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8df1Y=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1409, + "top": 1075, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8e89E=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1399, + "top": 1065, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8frKE=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1430, + "top": 1093, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8gpg0=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1462, + "top": 994, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8hUUs=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1449, + "top": 989, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8iPfY=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1487, + "top": 1005, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKvMIU8jJRc=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKvMIU8kteI=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "lineStyle": 1, + "points": "1408:1111;1489:987", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QKvMIU8a1To=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKvMIU8bx7Y=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKvMIU8c/MU=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QKvMIU8df1Y=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QKvMIU8e89E=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QKvMIU8frKE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QKvMIU8gpg0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QKvMIU8hUUs=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QKvMIU8iPfY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QKvMIU8jJRc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QKvMIU8kteI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKyR6VB+5F0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKyR6VB/sq8=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCAlIw=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 320, + "top": -272, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCBFDc=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 956, + "top": 731.5, + "width": 62, + "height": 13, + "text": "重测方向" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCC81I=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 320, + "top": -272, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCDFwk=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 320, + "top": -272, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 951, + "top": 724.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKyR6lCAlIw=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKyR6lCBFDc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKyR6lCC81I=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKyR6lCDFwk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKyR6lCEof0=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -136, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKyR6lCFl5A=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -136, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKyR6lCGLz0=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -136, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKyR6lCHKbg=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -136, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKyR6lCIqJE=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -136, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 936, + "top": 720, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKyR6lCEof0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKyR6lCFl5A=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKyR6lCGLz0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKyR6lCHKbg=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKyR6lCIqJE=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKysH1F4naw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKysH1F5Vw8=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F6t1U=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 672, + "top": -512, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F7w44=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 1172, + "top": 675.5, + "width": 62, + "height": 13, + "text": "重测测回" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F8ews=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 672, + "top": -512, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F9CVk=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 672, + "top": -512, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1167, + "top": 668.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKysH1F6t1U=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKysH1F7w44=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKysH1F8ews=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKysH1F9CVk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKysH1F+SbI=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 336, + "top": -256, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKysH1F/p8w=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 336, + "top": -256, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKysH1GAwRg=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 336, + "top": -256, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKysH1GBWy4=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 336, + "top": -256, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKysH1GC8OE=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 336, + "top": -256, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1152, + "top": 664, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKysH1F+SbI=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKysH1F/p8w=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKysH1GAwRg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKysH1GBWy4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKysH1GC8OE=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKzDRVJysxE=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKzDRVJztrc=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ0nsk=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 752, + "top": -1088, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ1z+Q=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 1238.5, + "top": 443.5, + "width": 226, + "height": 13, + "text": "resetSurveyorStateAndKeepPosition" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ29Q0=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 752, + "top": -1088, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ3D90=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 752, + "top": -1088, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1233.5, + "top": 436.5, + "width": 237.5634765625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKzDRVJ0nsk=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKzDRVJ1z+Q=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKzDRVJ29Q0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKzDRVJ3D90=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKzDRVJ4vK0=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 376, + "top": -544, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKzDRVJ5ijM=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 376, + "top": -544, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKzDRVJ6ScY=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 376, + "top": -544, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKzDRVJ71p4=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 376, + "top": -544, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKzDRVJ8l2g=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 376, + "top": -544, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1184, + "top": 432, + "width": 335, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKzDRVJ4vK0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKzDRVJ5ijM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKzDRVJ6ScY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKzDRVJ71p4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKzDRVJ8l2g=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QK2QmFlvdS8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFlwJfE=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "font": "Arial;13;0", + "left": 1395, + "top": 707, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 1, + "text": "+忽略" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFlxSkY=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1397, + "top": 711, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFly6tM=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1440, + "top": 698, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFlzr3g=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1474, + "top": 924, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl0RxM=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1460, + "top": 925, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl1X3o=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1501, + "top": 920, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl29pE=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1348, + "top": 490, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl39y0=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1336, + "top": 496, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl4Ns0=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1374, + "top": 478, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK2QmFl5muU=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK2QmFl6Y7A=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "tail": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "lineStyle": 1, + "points": "1496:951;1356:467", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QK2QmFlwJfE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QK2QmFlxSkY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QK2QmFly6tM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QK2QmFlzr3g=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QK2QmFl0RxM=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QK2QmFl1X3o=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QK2QmFl29pE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QK2QmFl39y0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QK2QmFl4Ns0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QK2QmFl5muU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QK2QmFl6Y7A=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QK340l0Fv9Q=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0GnqQ=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1014, + "top": 471, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0Habc=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1015, + "top": 486, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0IZgE=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1013, + "top": 442, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0Jr30=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1157, + "top": 466, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0KziQ=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1156, + "top": 479, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0LSAI=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1160, + "top": 438, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0MEF0=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 872, + "top": 478, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0NAX0=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 875, + "top": 491, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0Obj8=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 867, + "top": 451, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK340l0PZLk=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK340l0QvTM=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "lineStyle": 1, + "points": "1183:456;846:471", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QK340l0GnqQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QK340l0Habc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QK340l0IZgE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QK340l0Jr30=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QK340l0KziQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QK340l0LSAI=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QK340l0MEF0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QK340l0NAX0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QK340l0Obj8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QK340l0PZLk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QK340l0QvTM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QLdiXGHqtMU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHrPm0=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1236, + "top": 860, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHsNrs=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1230, + "top": 874, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHtajM=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1249, + "top": 833, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHu5Ak=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1431, + "top": 948, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHvESE=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1423, + "top": 959, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHwu2c=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1446, + "top": 924, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHxgP0=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1043, + "top": 773, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHyZg0=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1040, + "top": 786, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHzjfw=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1050, + "top": 746, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLdiXGH0aoo=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -72, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLdiXGH1FM8=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "tail": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "lineStyle": 1, + "points": "1461:951;1026:755", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QLdiXGHrPm0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QLdiXGHsNrs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QLdiXGHtajM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QLdiXGHu5Ak=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QLdiXGHvESE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QLdiXGHwu2c=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QLdiXGHxgP0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QLdiXGHyZg0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QLdiXGHzjfw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QLdiXGH0aoo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QLdiXGH1FM8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QLwOJ2bPDnI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QLwOJ2bQ8Ro=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bRPfA=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 560, + "top": -528, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bSTVM=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "fillColor": "#5656ff", + "font": "Arial;13;1", + "left": 1090.5, + "top": 587.5, + "width": 93, + "height": 13, + "text": "resurveyPoints" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bTKUY=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 560, + "top": -528, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bUBI4=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 560, + "top": -528, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 1085.5, + "top": 580.5, + "width": 103.9326171875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QLwOJ2bRPfA=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QLwOJ2bSTVM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QLwOJ2bTKUY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QLwOJ2bUBI4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QLwOJ2bVEa0=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QLwOJ2bWae0=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QLwOJ2bXEAg=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QLwOKGbYe7A=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QLwOKGbZQqo=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + } + ], + "fillColor": "#5656ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1064, + "top": 576, + "width": 146, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QLwOJ2bVEa0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QLwOJ2bWae0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QLwOJ2bXEAg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QLwOKGbYe7A=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QLwOKGbZQqo=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QLx6RGoNnGE=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoOcBM=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1050, + "top": 648, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoPkXM=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1040, + "top": 637, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoQUT8=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1071, + "top": 669, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoRB9A=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1013, + "top": 684, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoSk+A=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1005, + "top": 673, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoT8Lo=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1029, + "top": 706, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoUHro=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1087, + "top": 612, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoVk68=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1077, + "top": 604, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoW9No=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1110, + "top": 629, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLx6RGoXj7U=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLx6RGoYmUk=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "tail": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "lineStyle": 1, + "points": "1005:719;1117:611", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QLx6RGoOcBM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QLx6RGoPkXM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QLx6RGoQUT8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QLx6RGoRB9A=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QLx6RGoSk+A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QLx6RGoT8Lo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QLx6RGoUHro=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QLx6RGoVk68=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QLx6RGoW9No=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QLx6RGoXj7U=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QLx6RGoYmUk=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QMaQUG/rlG8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QMaQUG/sv3A=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUG/tkJ4=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -448, + "top": -256, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUG/umGY=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 612.5, + "top": 579.5, + "width": 216, + "height": 13, + "text": "switchState2RestartInCurrentCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUW/vdlU=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -448, + "top": -256, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUW/w0wQ=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -448, + "top": -256, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 607.5, + "top": 572.5, + "width": 227.4580078125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMaQUG/tkJ4=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QMaQUG/umGY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QMaQUW/vdlU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMaQUW/w0wQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QMaQUW/x48o=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -224, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QMaQUW/yJ84=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -224, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QMaQUW/z4XE=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -224, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QMaQUW/0u+w=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -224, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QMaQUW/13YU=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -224, + "top": -128, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 560, + "top": 568, + "width": 321, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QMaQUW/x48o=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QMaQUW/yJ84=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QMaQUW/z4XE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QMaQUW/0u+w=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QMaQUW/13YU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QMbzEXNQ00I=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNR/aw=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "font": "Arial;13;0", + "left": 942, + "top": 598, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 1, + "text": "+开始重测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNSJUg=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 971, + "top": 613, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNTTKw=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 972, + "top": 569, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNUT2s=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1036, + "top": 600, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNVmq4=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1034, + "top": 613, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNWUrs=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1041, + "top": 573, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNX73U=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 906, + "top": 597, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNYoLo=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 908, + "top": 610, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNZwIQ=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 902, + "top": 569, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMbzEXNaGMo=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMbzEXNbVPI=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "lineStyle": 1, + "points": "1063:592;881:588", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QMbzEXNR/aw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMbzEXNSJUg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMbzEXNTTKw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QMbzEXNUT2s=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QMbzEXNVmq4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QMbzEXNWUrs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QMbzEXNX73U=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QMbzEXNYoLo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QMbzEXNZwIQ=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QMbzEXNaGMo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QMbzEXNbVPI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QMjEp4Xxm70=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4XyXqY=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 973, + "top": 991, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4XzTSE=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 986, + "top": 984, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X0hBs=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 948, + "top": 1006, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X1sYc=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 755, + "top": 612, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X2bX4=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 768, + "top": 607, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X3ebc=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 729, + "top": 621, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X4oDY=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1193, + "top": 1371, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X5UnY=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1203, + "top": 1362, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X6pQM=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1171, + "top": 1388, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMjEqIX7oU8=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMjEqIX8oCk=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "tail": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "lineStyle": 1, + "points": "730:603;1193:1407", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QMjEp4XyXqY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMjEp4XzTSE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMjEp4X0hBs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QMjEp4X1sYc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QMjEp4X2bX4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QMjEp4X3ebc=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QMjEp4X4oDY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QMjEp4X5UnY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QMjEp4X6pQM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QMjEqIX7oU8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QMjEqIX8oCk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QMnaf4p31wI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p4YhA=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1340, + "top": 829, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p5heM=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1330, + "top": 840, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p6u/E=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1361, + "top": 808, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p7HWo=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1452, + "top": 937, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p8uO8=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1442, + "top": 945, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p9ZYk=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1475, + "top": 920, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p+8dA=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1229, + "top": 721, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p/pOU=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1221, + "top": 732, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4qAet8=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1245, + "top": 699, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMnaf4qBmzo=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMnaf4qCCtY=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "tail": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "lineStyle": 1, + "points": "1482:951;1221:699", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QMnaf4p4YhA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMnaf4p5heM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMnaf4p6u/E=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QMnaf4p7HWo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QMnaf4p8uO8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QMnaf4p9ZYk=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QMnaf4p+8dA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QMnaf4p/pOU=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QMnaf4qAet8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QMnaf4qBmzo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QMnaf4qCCtY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QNAhapFuI7s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFvVXY=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "font": "Arial;13;0", + "left": 1312, + "top": 829, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 1, + "text": "+取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFwVCE=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1336, + "top": 817, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFxPvQ=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1311, + "top": 854, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFyOWw=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1242, + "top": 705, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFz3Mw=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1254, + "top": 699, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapF0mvQ=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1217, + "top": 717, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAha5F1FkI=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1460, + "top": 918, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAha5F2OJ8=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1466, + "top": 905, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAha5F3+WU=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1449, + "top": 943, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNAha5F4AZU=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 744, + "top": -56, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNAha5F5UgE=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 744, + "top": -56, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "lineStyle": 1, + "points": "1215:699;1320:848;1474:951", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QNAhapFvVXY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QNAhapFwVCE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QNAhapFxPvQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QNAhapFyOWw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QNAhapFz3Mw=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QNAhapF0mvQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QNAha5F1FkI=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QNAha5F2OJ8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QNAha5F3+WU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QNAha5F4AZU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QNAha5F5UgE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QNFL66Cbz6k=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CcWkE=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "font": "Arial;13;0", + "left": 1247, + "top": 550, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 1, + "text": "+忽略" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CdTo8=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1250, + "top": 542, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Ce+u8=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1288, + "top": 567, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CfR+U=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1215, + "top": 627, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Cg04o=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1205, + "top": 617, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66ChcXw=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1236, + "top": 645, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CipGA=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1312, + "top": 474, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Cj6oQ=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1299, + "top": 469, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Ck0os=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1337, + "top": 485, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNFL66ClLUo=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNFL66Cm8No=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "tail": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "lineStyle": 1, + "points": "1214:663;1339:467", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QNFL66CcWkE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QNFL66CdTo8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QNFL66Ce+u8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QNFL66CfR+U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QNFL66Cg04o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QNFL66ChcXw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QNFL66CipGA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QNFL66Cj6oQ=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QNFL66Ck0os=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QNFL66ClLUo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QNFL66Cm8No=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVTun0vZBv0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vaxdo=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "font": "Arial;13;0", + "left": 1205, + "top": 502, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 1, + "text": "+重测失败" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vbxuQ=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1226, + "top": 490, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vcmj8=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1251, + "top": 527, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vdoCc=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1176, + "top": 542, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0ved/I=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1170, + "top": 529, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vfAMs=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1187, + "top": 567, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vg9C0=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1294, + "top": 463, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTuoEvhMzo=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1284, + "top": 453, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTuoEviZLY=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1312, + "top": 483, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVTuoEvjqMY=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVTuoEvkZEE=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "tail": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "lineStyle": 1, + "points": "1163:575;1324:467", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVTun0vaxdo=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVTun0vbxuQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVTun0vcmj8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVTun0vdoCc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVTun0ved/I=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVTun0vfAMs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVTun0vg9C0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVTuoEvhMzo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVTuoEviZLY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVTuoEvjqMY=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVTuoEvkZEE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVWv21Zu6Aw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZvsKs=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1032, + "top": 1458, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZwRzk=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1034, + "top": 1473, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZxCSk=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1027, + "top": 1429, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21Zyej0=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1087, + "top": 1451, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZzuYg=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1086, + "top": 1464, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ0MPo=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1087, + "top": 1423, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ18no=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 977, + "top": 1467, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ21Iw=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 981, + "top": 1480, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ3nLg=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 969, + "top": 1440, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVWv3FZ4weo=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVWv3FZ58yM=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "tail": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "lineStyle": 1, + "points": "1111:1439;950:1462", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVWv21ZvsKs=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVWv21ZwRzk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVWv21ZxCSk=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVWv21Zyej0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVWv21ZzuYg=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVWv3FZ0MPo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVWv3FZ18no=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVWv3FZ21Iw=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVWv3FZ3nLg=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVWv3FZ4weo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVWv3FZ58yM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RVbpp1nKVhc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RVbpp1nLusg=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnM530=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1680, + "top": -704, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnNEWc=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 1095.5, + "top": 819.5, + "width": 77, + "height": 13, + "text": "执行测回删除" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnO5/0=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1680, + "top": -704, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnPMMU=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1680, + "top": -704, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1090.5, + "top": 812.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVbpqFnM530=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RVbpqFnNEWc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RVbpqFnO5/0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVbpqFnPMMU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RVbpqFnQqa0=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 840, + "top": -352, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RVbpqFnRVaY=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 840, + "top": -352, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RVbpqFnSiyY=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 840, + "top": -352, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RVbpqFnTp/o=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 840, + "top": -352, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RVbpqFnUeVQ=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 840, + "top": -352, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1072, + "top": 808, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RVbpqFnQqa0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RVbpqFnRVaY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RVbpqFnSiyY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RVbpqFnTp/o=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RVbpqFnUeVQ=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVcwNF0lj/I=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0m640=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1180, + "top": 753, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0n9pE=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1194, + "top": 759, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0osMg=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1153, + "top": 740, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0pne0=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1195, + "top": 722, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0qTm8=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1206, + "top": 730, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0rLrQ=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1172, + "top": 707, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0s558=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1166, + "top": 783, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0tAew=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1179, + "top": 787, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0uE34=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1139, + "top": 776, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVcwNF0vsAE=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVcwNF0w5ls=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "tail": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "lineStyle": 1, + "points": "1193:699;1142:807", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVcwNF0m640=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVcwNF0n9pE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVcwNF0osMg=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVcwNF0pne0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVcwNF0qTm8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVcwNF0rLrQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVcwNF0s558=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVcwNF0tAew=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVcwNF0uE34=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVcwNF0vsAE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVcwNF0w5ls=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVdEqmBOVoU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBP7Mw=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 918, + "top": 711, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBQ+G0=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 910, + "top": 724, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBRwAI=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 933, + "top": 686, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBSb60=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1072, + "top": 800, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBT13s=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1063, + "top": 811, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBU/V0=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1089, + "top": 779, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBVD2o=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 765, + "top": 623, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBWru8=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 761, + "top": 635, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBX1jY=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 775, + "top": 597, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVdEqmBYqxc=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVdEqmBZh5U=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "lineStyle": 1, + "points": "1102:807;751:603", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVdEqmBP7Mw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVdEqmBQ+G0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVdEqmBRwAI=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVdEqmBSb60=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVdEqmBT13s=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVdEqmBU/V0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVdEqmBVD2o=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVdEqmBWru8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVdEqmBX1jY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVdEqmBYqxc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVdEqmBZh5U=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWbWiJQ+LqI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWbWiJQ/pQw=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRAz/w=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1808, + "top": 368, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRBIu8=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "font": "Arial;13;1", + "left": 594, + "top": 819.5, + "width": 167, + "height": 13, + "text": "doCalScheduleSingleCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRCluw=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1808, + "top": 368, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRDVic=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1808, + "top": 368, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 589, + "top": 812.5, + "width": 177.603515625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWbWiJRAz/w=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWbWiJRBIu8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWbWiJRCluw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWbWiJRDVic=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWbWiJRE0bA=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -904, + "top": 184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWbWiJRF/Bs=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -904, + "top": 184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWbWiJRG03U=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -904, + "top": 184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWbWiJRHoKE=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -904, + "top": 184, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWbWiZRIksM=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -904, + "top": 184, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 552, + "top": 808, + "width": 251, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWbWiJRE0bA=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWbWiJRF/Bs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWbWiJRG03U=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWbWiJRHoKE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWbWiZRIksM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWiYh6tfjKM=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWiYh6tg64I=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6th8ec=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1424, + "top": 416, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6tiGF8=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 703.5, + "top": 931.5, + "width": 116, + "height": 13, + "text": "该测回是否完成测量" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6tjmMc=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1424, + "top": 416, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6tktDE=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1424, + "top": 416, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 698.5, + "top": 924.5, + "width": 127, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWiYh6th8ec=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWiYh6tiGF8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWiYh6tjmMc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWiYh6tktDE=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWiYh6tlfk4=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -712, + "top": 208, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWiYh6tmr4M=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -712, + "top": 208, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWiYiKtnqn4=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -712, + "top": 208, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWiYiKtodLM=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -712, + "top": 208, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWiYiKtpwlU=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -712, + "top": 208, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 672, + "top": 920, + "width": 179, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWiYh6tlfk4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWiYh6tmr4M=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWiYiKtnqn4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWiYiKtodLM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWiYiKtpwlU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWkDsK/8U8w=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsK/9X9k=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 730, + "top": 865, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsK/+yfw=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 742, + "top": 856, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsK//l9E=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 707, + "top": 884, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAAR6U=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 718, + "top": 848, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAB24o=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 730, + "top": 842, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLACKmw=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 693, + "top": 861, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLADQMw=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 744, + "top": 883, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAEjZI=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 753, + "top": 873, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAFuWM=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 725, + "top": 903, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWkDsLAGH8s=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1160, + "top": 208, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWkDsLAHEmo=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1160, + "top": 208, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "tail": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "lineStyle": 1, + "points": "691:843;748:919", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWkDsK/9X9k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWkDsK/+yfw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWkDsK//l9E=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWkDsLAAR6U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWkDsLAB24o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWkDsLACKmw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWkDsLADQMw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWkDsLAEjZI=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWkDsLAFuWM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWkDsLAGH8s=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWkDsLAHEmo=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWmAObijdJg=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObikqE4=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "font": "Arial;13;0", + "left": 702, + "top": 756, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 1, + "text": "+未完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObilnCo=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 710, + "top": 758, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObima+o=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 754, + "top": 753, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObinxIM=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 741, + "top": 888, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObioxZQ=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 727, + "top": 888, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObip4S4=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 768, + "top": 890, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObiqN8s=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 710, + "top": 624, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObir6/Y=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 697, + "top": 628, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObisLv4=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 736, + "top": 617, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWmAObitY30=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -888, + "top": 512, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWmAObiuohI=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -888, + "top": 512, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "lineStyle": 1, + "points": "759:919;722:603", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWmAObikqE4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWmAObilnCo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWmAObima+o=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWmAObinxIM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWmAObioxZQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWmAObip4S4=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWmAObiqN8s=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWmAObir6/Y=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWmAObisLv4=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWmAObitY30=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWmAObiuohI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWo+Isgcitc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWo+Isgdtvs=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+Isge0Bo=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 496, + "top": -256, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+Isgf4GU=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 658, + "top": 1051.5, + "width": 90, + "height": 13, + "text": "执行单测回检测" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+Isgg0Do=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 496, + "top": -256, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+IsghCRI=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 496, + "top": -256, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 653, + "top": 1044.5, + "width": 101, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWo+Isge0Bo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWo+Isgf4GU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWo+Isgg0Do=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWo+IsghCRI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWo+IsgimWA=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 248, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWo+IsgjYQU=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 248, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWo+I8gkz+0=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 248, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWo+I8gl0UM=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 248, + "top": -128, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWo+I8gmRYk=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 248, + "top": -128, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 632, + "top": 1040, + "width": 142, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWo+IsgimWA=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWo+IsgjYQU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWo+I8gkz+0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWo+I8gl0UM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWo+I8gmRYk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWqc88vvIe4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vwQ3o=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "font": "Arial;13;0", + "left": 728, + "top": 997, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 1, + "text": "+完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vxT8A=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 758, + "top": 1003, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vy9C4=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 717, + "top": 984, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vzWws=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 754, + "top": 978, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v0Sh0=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 765, + "top": 986, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v168Q=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 731, + "top": 962, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v2l68=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 735, + "top": 1016, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v3ThA=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 748, + "top": 1019, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v4wsI=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 709, + "top": 1008, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWqc88v5V34=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWqc88v6Awc=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "tail": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "lineStyle": 1, + "points": "752:955;711:1039", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWqc88vwQ3o=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWqc88vxT8A=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWqc88vy9C4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWqc88vzWws=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWqc88v0Sh0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWqc88v168Q=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWqc88v2l68=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWqc88v3ThA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWqc88v4wsI=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWqc88v5V34=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWqc88v6Awc=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWvJyNWG+ro=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJyNWHf5E=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "font": "Arial;13;0", + "left": 1068, + "top": 991, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWI+RY=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1102, + "top": 976, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWJFaw=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1107, + "top": 1020, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWKHVg=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 798, + "top": 1025, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWLzSM=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 799, + "top": 1011, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWM5GE=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 796, + "top": 1053, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWN+wY=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1411, + "top": 957, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWO3W0=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1407, + "top": 944, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWPqsM=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1418, + "top": 984, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWvJydWQnX8=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWvJydWRolw=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "lineStyle": 1, + "points": "774:1049;1439:976", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWvJyNWHf5E=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWvJydWI+RY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWvJydWJFaw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWvJydWKHVg=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWvJydWLzSM=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWvJydWM5GE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWvJydWN+wY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWvJydWO3W0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWvJydWPqsM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWvJydWQnX8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWvJydWRolw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWzzg+QpJu4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWzzg+QqF0g=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QruaM=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -800, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QscXo=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "font": "Arial;13;1", + "left": 1093.5, + "top": 907.5, + "width": 144, + "height": 13, + "text": "doCalScheduleAllCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QtTVY=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -800, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QuN+0=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -800, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1088.5, + "top": 900.5, + "width": 155.208984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWzzg+QruaM=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWzzg+QscXo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWzzg+QtTVY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWzzg+QuN+0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWzzg+QvVhA=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -400, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWzzhOQwWI4=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -400, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWzzhOQxyn0=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -400, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWzzhOQy5lE=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -400, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWzzhOQzPbk=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -400, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1056, + "top": 896, + "width": 219, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWzzg+QvVhA=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWzzhOQwWI4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWzzhOQxyn0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWzzhOQy5lE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWzzhOQzPbk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RXS1EJdHVug=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EJdIPgY=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 953, + "top": 934, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EJdJc8o=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 954, + "top": 949, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdKavs=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 952, + "top": 905, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdLggY=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1029, + "top": 930, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdMTYk=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1028, + "top": 943, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdNexM=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1032, + "top": 902, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdOTNQ=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 877, + "top": 939, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdPiGs=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 880, + "top": 952, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdQDNw=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 871, + "top": 912, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXS1EZdR8Jw=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXS1EZdSgUI=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "tail": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "lineStyle": 1, + "points": "1055:920;851:932", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RXS1EJdIPgY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXS1EJdJc8o=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXS1EZdKavs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RXS1EZdLggY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RXS1EZdMTYk=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RXS1EZdNexM=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RXS1EZdOTNQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RXS1EZdPiGs=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RXS1EZdQDNw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RXS1EZdR8Jw=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RXS1EZdSgUI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RXZT37eTFkI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RXZT37eUYGs=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eVlUE=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -768, + "top": -352, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eWL9s=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 75, + "top": 683.5, + "width": 209, + "height": 13, + "text": "是否是doCalScheduleAllCycle状态" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eXM1A=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -768, + "top": -352, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eYXNc=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -768, + "top": -352, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 70, + "top": 676.5, + "width": 220.208984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXZT37eVlUE=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RXZT37eWL9s=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RXZT37eXM1A=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXZT37eYXNc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RXZT4LeZ09I=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -384, + "top": -176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RXZT4LeaFc4=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -384, + "top": -176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RXZT4Leb1Fs=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -384, + "top": -176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RXZT4Lec37Q=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -384, + "top": -176, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RXZT4Led934=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -384, + "top": -176, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 24, + "top": 672, + "width": 311, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RXZT4LeZ09I=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RXZT4LeaFc4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RXZT4Leb1Fs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RXZT4Lec37Q=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RXZT4Led934=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RXgsFM1PXPQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1QsVQ=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "font": "Arial;13;0", + "left": 415, + "top": 879, + "width": 33.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 1, + "text": "+通过" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1Ra4g=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 422, + "top": 891, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1S7Hk=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 448, + "top": 854, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1TpZY=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 646, + "top": 1030, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1UfIs=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 636, + "top": 1039, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1VQJk=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 665, + "top": 1010, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1WeYo=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 217, + "top": 728, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1XNlM=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 211, + "top": 740, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1Y+GY=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 229, + "top": 703, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXgsFc1ZbPg=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXgsFc1aqC8=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "tail": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "lineStyle": 1, + "points": "676:1039;205:707", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RXgsFM1QsVQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXgsFM1Ra4g=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXgsFM1S7Hk=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RXgsFM1TpZY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RXgsFM1UfIs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RXgsFM1VQJk=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RXgsFM1WeYo=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RXgsFM1XNlM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RXgsFM1Y+GY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RXgsFc1ZbPg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RXgsFc1aqC8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RXiiXNaNYZA=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaOCjk=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "font": "Arial;13;0", + "left": 289, + "top": 570, + "width": 33.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 1, + "text": "+不是" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaPvOQ=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 296, + "top": 558, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaQrNs=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 322, + "top": 595, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaRjEI=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 214, + "top": 637, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaS5Dg=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 208, + "top": 625, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaT/jE=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 227, + "top": 662, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaUStc=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 395, + "top": 504, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaVtIQ=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 385, + "top": 495, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaWcc8=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 415, + "top": 523, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXiiXNaXeGE=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXiiXNaY4kk=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "lineStyle": 1, + "points": "203:671;425:507", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RXiiXNaOCjk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXiiXNaPvOQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXiiXNaQrNs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RXiiXNaRjEI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RXiiXNaS5Dg=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RXiiXNaT/jE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RXiiXNaUStc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RXiiXNaVtIQ=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RXiiXNaWcc8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RXiiXNaXeGE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RXiiXNaY4kk=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RX4IzuDknh4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RX4IzuDlZLU=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDmg8A=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": -240, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDnpIw=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 69, + "top": 1043.5, + "width": 181, + "height": 13, + "text": "检测其他测回是否有待补测数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDoCnY=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": -240, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDpft0=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": -240, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 64, + "top": 1036.5, + "width": 192, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX4IzuDmg8A=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RX4IzuDnpIw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RX4IzuDoCnY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX4IzuDpft0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RX4IzuDqBSE=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RX4IzuDrpSs=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RX4IzuDsUmU=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RX4IzuDtPH4=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RX4IzuDu2iA=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 24, + "top": 1032, + "width": 271, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RX4IzuDqBSE=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RX4IzuDrpSs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RX4IzuDsUmU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RX4IzuDtPH4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RX4IzuDu2iA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RX50xuaSWVY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaTzmw=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "font": "Arial;13;0", + "left": 173, + "top": 863, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 1, + "text": "+是" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaUoZk=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 198, + "top": 864, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaVv9g=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 154, + "top": 862, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaWjUs=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 191, + "top": 727, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaX0wc=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 204, + "top": 730, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaYr8k=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 164, + "top": 721, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaZPzE=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 176, + "top": 999, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaaRl8=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 189, + "top": 998, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuabK8k=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 148, + "top": 1002, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX50xuac8yw=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX50xuadjR8=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "tail": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "lineStyle": 1, + "points": "178:707;160:1031", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RX50xuaTzmw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX50xuaUoZk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX50xuaVv9g=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RX50xuaWjUs=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RX50xuaX0wc=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RX50xuaYr8k=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RX50xuaZPzE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RX50xuaaRl8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RX50xuabK8k=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RX50xuac8yw=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RX50xuadjR8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RX8e8+6VSP4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RX8e9O6W2xM=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6XR7Q=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -400, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6YBmI=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 295.5, + "top": 1211.5, + "width": 77, + "height": 13, + "text": "提示用户选择" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6ZG1Q=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -400, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6aHT4=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -400, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 290.5, + "top": 1204.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX8e9O6XR7Q=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RX8e9O6YBmI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RX8e9O6ZG1Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX8e9O6aHT4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RX8e9O6brFw=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -200, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RX8e9O6chUQ=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -200, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RX8e9O6d2JQ=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -200, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RX8e9O6ehSE=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -200, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RX8e9O6fsgA=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -200, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 272, + "top": 1200, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RX8e9O6brFw=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RX8e9O6chUQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RX8e9O6d2JQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RX8e9O6ehSE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RX8e9O6fsgA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RX9EYPFfH8Q=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFg5zI=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "font": "Arial;13;0", + "left": 246, + "top": 1116, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFh+Xw=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 266, + "top": 1105, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFiQm8=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 235, + "top": 1137, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFj0XU=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 207, + "top": 1068, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFkHH4=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 217, + "top": 1060, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFlEI4=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 184, + "top": 1085, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFmXkk=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 305, + "top": 1164, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFnjvk=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 313, + "top": 1153, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFoLfQ=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 289, + "top": 1186, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX9EYPFp0GM=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX9EYPFqX8k=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "tail": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "lineStyle": 1, + "points": "178:1067;314:1199", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RX9EYPFg5zI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX9EYPFh+Xw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX9EYPFiQm8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RX9EYPFj0XU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RX9EYPFkHH4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RX9EYPFlEI4=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RX9EYPFmXkk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RX9EYPFnjvk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RX9EYPFoLfQ=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RX9EYPFp0GM=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RX9EYPFqX8k=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RX+92/rtdeY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RX+92/ru5aU=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/rvMVo=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -608, + "top": -240, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/rwk7c=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 492, + "top": 1107.5, + "width": 62, + "height": 13, + "text": "切换测回" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/rxBWI=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -608, + "top": -240, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/ryOmk=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -608, + "top": -240, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 487, + "top": 1100.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX+92/rvMVo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RX+92/rwk7c=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RX+92/rxBWI=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX+92/ryOmk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RX+92/rzeck=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RX+92/r0UGE=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RX+92/r1dEM=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RX+92/r24rI=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RX+92/r3m0Y=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -120, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 472, + "top": 1096, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RX+92/rzeck=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RX+92/r0UGE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RX+92/r1dEM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RX+92/r24rI=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RX+92/r3m0Y=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RX/wMv3JNxw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3KAYY=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 606, + "top": 837, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3L2sA=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 592, + "top": 832, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3MDuY=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 635, + "top": 848, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3NMMM=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 524, + "top": 1059, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3OaEE=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 512, + "top": 1052, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3P2uw=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 548, + "top": 1073, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3QkNM=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 689, + "top": 616, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3RuyM=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 676, + "top": 613, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3SQ5M=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 717, + "top": 621, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX/wM/3TMvA=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX/wM/3Udik=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "lineStyle": 1, + "points": "529:1095;713:603", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RX/wM/3KAYY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX/wM/3L2sA=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX/wM/3MDuY=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RX/wM/3NMMM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RX/wM/3OaEE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RX/wM/3P2uw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RX/wM/3QkNM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RX/wM/3RuyM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RX/wM/3SQ5M=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RX/wM/3TMvA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RX/wM/3Udik=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYA6Lgau9u4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6LgavBvE=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "font": "Arial;13;0", + "left": 370, + "top": 1145, + "width": 98.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 1, + "text": "+跳转到相应测回" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6LgawDgk=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 412, + "top": 1132, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lgaxot4=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 434, + "top": 1172, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6LgayEWk=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 381, + "top": 1167, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lgazq+M=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 377, + "top": 1154, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga0Sio=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 390, + "top": 1193, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga1FSA=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 459, + "top": 1124, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga2vcA=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 450, + "top": 1113, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga3b2g=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 476, + "top": 1146, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYA6Lga4c4g=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYA6Lga51go=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "tail": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "lineStyle": 1, + "points": "366:1199;489:1131", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYA6LgavBvE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYA6LgawDgk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYA6Lgaxot4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYA6LgayEWk=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYA6Lgazq+M=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYA6Lga0Sio=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYA6Lga1FSA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYA6Lga2vcA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYA6Lga3b2g=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYA6Lga4c4g=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYA6Lga51go=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYRxIyqNVJQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqOsk8=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "font": "Arial;13;0", + "left": 340, + "top": 844, + "width": 72.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 1, + "text": "+忽略或取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqPdMg=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 361, + "top": 842, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqQWvY=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 405, + "top": 849, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqRHT4=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 325, + "top": 1164, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqS57E=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 312, + "top": 1160, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqTkAo=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 351, + "top": 1173, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqUXmw=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 427, + "top": 524, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqVgEY=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 413, + "top": 524, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqWNBU=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 454, + "top": 524, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYRxJCqXBjo=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYRxJCqYdsw=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "lineStyle": 1, + "points": "336:1199;446:507", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYRxIyqOsk8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYRxIyqPdMg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYRxIyqQWvY=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYRxIyqRHT4=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYRxJCqS57E=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYRxJCqTkAo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYRxJCqUXmw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYRxJCqVgEY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYRxJCqWNBU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYRxJCqXBjo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYRxJCqYdsw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RYWBNj55r2s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RYWBNj56ll8=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj57vDo=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj582Gg=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 167.5, + "top": 1403.5, + "width": 155, + "height": 13, + "text": "检测其他测回是否有空数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj59CIs=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj5+a6c=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 162.5, + "top": 1396.5, + "width": 166, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYWBNj57vDo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RYWBNj582Gg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RYWBNj59CIs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYWBNj5+a6c=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RYWBNj5/meo=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RYWBNj6ApFY=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RYWBNj6BKos=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RYWBNj6CyfU=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RYWBNj6DzGw=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 128, + "top": 1392, + "width": 234, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RYWBNj5/meo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RYWBNj6ApFY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RYWBNj6BKos=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RYWBNj6CyfU=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RYWBNj6DzGw=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYXKoUPzfpc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP0Xm4=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "font": "Arial;13;0", + "left": 205, + "top": 1219, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 1, + "text": "+无" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP1/8o=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 230, + "top": 1215, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP2TmE=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 186, + "top": 1226, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP3dpE=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 183, + "top": 1082, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP4Dks=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 197, + "top": 1081, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP5sn0=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 155, + "top": 1084, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP6dKk=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 248, + "top": 1356, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP7hGo=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 260, + "top": 1350, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP8Pbs=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 222, + "top": 1366, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYXKoUP9qJ8=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYXKokP+OFo=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "tail": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "lineStyle": 1, + "points": "163:1067;240:1391", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYXKoUP0Xm4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYXKoUP1/8o=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYXKoUP2TmE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYXKoUP3dpE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYXKoUP4Dks=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYXKoUP5sn0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYXKoUP6dKk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYXKoUP7hGo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYXKoUP8Pbs=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYXKoUP9qJ8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYXKokP+OFo=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYbKCEsNrL8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsOHZ0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "font": "Arial;13;0", + "left": 264, + "top": 1300, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsP+kM=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 260, + "top": 1294, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsQdPM=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 301, + "top": 1313, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsRxi0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 249, + "top": 1355, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsSIa0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 238, + "top": 1347, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsTIOs=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 272, + "top": 1370, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsUoUc=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 300, + "top": 1246, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCUsVQTY=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 287, + "top": 1242, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCUsWC+U=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 327, + "top": 1253, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYbKCUsX4lU=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYbKCUsYcdA=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "tail": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "lineStyle": 1, + "points": "252:1391;325:1235", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYbKCEsOHZ0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYbKCEsP+kM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYbKCEsQdPM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYbKCEsRxi0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYbKCEsSIa0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYbKCEsTIOs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYbKCEsUoUc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYbKCUsVQTY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYbKCUsWC+U=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYbKCUsX4lU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYbKCUsYcdA=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RYo1sZrzoek=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RYo1sZr0KlU=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr1HjQ=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -160, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr2W5c=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 623.5, + "top": 1275.5, + "width": 116, + "height": 13, + "text": "检测其他测回合法性" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr3XYs=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -160, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr4E80=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -160, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 618.5, + "top": 1268.5, + "width": 127, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYo1sZr1HjQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RYo1sZr2W5c=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RYo1sZr3XYs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYo1sZr4E80=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RYo1sZr5VvI=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RYo1sZr6Veg=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RYo1sZr7Dv4=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RYo1sZr8TjI=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RYo1sZr9JcM=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": -80, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 592, + "top": 1264, + "width": 179, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RYo1sZr5VvI=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RYo1sZr6Veg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RYo1sZr7Dv4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RYo1sZr8TjI=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RYo1sZr9JcM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYqgkqO2MyI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO3BkI=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "font": "Arial;13;0", + "left": 428, + "top": 1324, + "width": 59.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 1, + "text": "+无空测回" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO4B50=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 453, + "top": 1310, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO5Eu4=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 466, + "top": 1353, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO6Q3U=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 325, + "top": 1363, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO7HyE=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 324, + "top": 1349, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO8jmg=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 329, + "top": 1390, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO9LA0=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 590, + "top": 1285, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO+vZw=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 584, + "top": 1273, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO/OQc=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 602, + "top": 1311, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYqgkqPAF8U=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYqgkqPBTIk=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "tail": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "lineStyle": 1, + "points": "305:1391;620:1299", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYqgkqO3BkI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYqgkqO4B50=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYqgkqO5Eu4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYqgkqO6Q3U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYqgkqO7HyE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYqgkqO8jmg=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYqgkqO9LA0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYqgkqO+vZw=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYqgkqO/OQc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYqgkqPAF8U=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYqgkqPBTIk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYuGzq0zcW0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq00uWc=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "font": "Arial;13;0", + "left": 1017, + "top": 1104, + "width": 137.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 1, + "text": "+发现有测回未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq01kJ4=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1080, + "top": 1090, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq02LjQ=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1096, + "top": 1133, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq03E1k=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 746, + "top": 1233, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq044hU=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 744, + "top": 1220, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq05NGE=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": 1260, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq06xW4=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1424, + "top": 976, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq07gn8=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1417, + "top": 964, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq08/Nc=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1438, + "top": 1000, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYuGzq09BO0=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYuGzq0+Fys=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "lineStyle": 1, + "points": "728:1263;1454:987", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYuGzq00uWc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYuGzq01kJ4=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYuGzq02LjQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYuGzq03E1k=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYuGzq044hU=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYuGzq05NGE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYuGzq06xW4=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYuGzq07gn8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYuGzq08/Nc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYuGzq09BO0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYuGzq0+Fys=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RY5M47VS/5M=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M47VTDWg=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "font": "Arial;13;0", + "left": 508, + "top": 883, + "width": 85.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 1, + "text": "+全部通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M47VUjKA=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 536, + "top": 887, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVVTlw=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 579, + "top": 874, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVWBPw=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 654, + "top": 1236, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVX2xY=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 640, + "top": 1237, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVYskw=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 681, + "top": 1232, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVZo0A=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 446, + "top": 530, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVaI9U=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 434, + "top": 536, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVbdjo=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 472, + "top": 518, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY5M5LVcoPg=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY5M5LVdBDo=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "lineStyle": 1, + "points": "676:1263;454:507", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RY5M47VTDWg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RY5M47VUjKA=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RY5M5LVVTlw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RY5M5LVWBPw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RY5M5LVX2xY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RY5M5LVYskw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RY5M5LVZo0A=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RY5M5LVaI9U=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RY5M5LVbdjo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RY5M5LVcoPg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RY5M5LVdBDo=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RY+P3cq78x4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RY+P3cq8lrU=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3cq9UVw=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -384, + "top": -48, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3cq+inU=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 860.5, + "top": 1283.5, + "width": 101, + "height": 13, + "text": "switchState2Idle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3cq/1Xo=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -384, + "top": -48, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3crAIoY=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -384, + "top": -48, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 855.5, + "top": 1276.5, + "width": 111.8671875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RY+P3cq9UVw=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RY+P3cq+inU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RY+P3cq/1Xo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RY+P3crAIoY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RY+P3srBu6A=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RY+P3srCnMw=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RY+P3srDTrA=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RY+P3srE+P0=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RY+P3srFRq4=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": -24, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 832, + "top": 1272, + "width": 158, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RY+P3srBu6A=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RY+P3srCnMw=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RY+P3srDTrA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RY+P3srE+P0=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RY+P3srFRq4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RY/lW9HunTY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hvi/A=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 837, + "top": 877, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hw6yM=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 822, + "top": 879, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hx5k8=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 866, + "top": 872, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9HyN1A=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 888, + "top": 1241, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hz89k=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 875, + "top": 1240, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H0J0I=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 916, + "top": 1241, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H1ErY=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 785, + "top": 512, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H23xw=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 772, + "top": 516, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H3Onc=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 812, + "top": 504, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY/lW9H46uE=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY/lW9H5+K0=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "lineStyle": 1, + "points": "907:1271;797:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RY/lW9Hvi/A=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RY/lW9Hw6yM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RY/lW9Hx5k8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RY/lW9HyN1A=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RY/lW9Hz89k=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RY/lW9H0J0I=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RY/lW9H1ErY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RY/lW9H23xw=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RY/lW9H3Onc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RY/lW9H46uE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RY/lW9H5+K0=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RZAQqNi9KXs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RZAQqNi+U5k=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNi/3K4=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": 160, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNjAnDw=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 834, + "top": 1467.5, + "width": 90, + "height": 13, + "text": "查找待补测数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNjB74E=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": 160, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNjCvdQ=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": 160, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 829, + "top": 1460.5, + "width": 101, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZAQqNi/3K4=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RZAQqNjAnDw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RZAQqNjB74E=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZAQqNjCvdQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RZAQqNjDBLs=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RZAQqNjEOXs=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RZAQqNjF53M=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RZAQqNjGCMk=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RZAQqNjHp8s=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": 80, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 808, + "top": 1456, + "width": 142, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RZAQqNjDBLs=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RZAQqNjEOXs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RZAQqNjF53M=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RZAQqNjGCMk=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RZAQqNjHp8s=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZDsue7ftRY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7gCik=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "font": "Arial;13;0", + "left": 869, + "top": 1372, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7h1YU=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 864, + "top": 1369, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7iQis=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 908, + "top": 1377, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7jDYo=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 870, + "top": 1420, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7kyAA=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 858, + "top": 1416, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7ll8Q=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 897, + "top": 1429, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7mtW0=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 887, + "top": 1323, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7n/oo=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 874, + "top": 1323, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7oje8=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 915, + "top": 1324, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZDsue7pTkA=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZDsue7qLNI=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "tail": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "lineStyle": 1, + "points": "881:1455;907:1307", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZDsue7gCik=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZDsue7h1YU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZDsue7iQis=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZDsue7jDYo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZDsue7kyAA=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZDsue7ll8Q=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZDsue7mtW0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZDsue7n/oo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZDsue7oje8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZDsue7pTkA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZDsue7qLNI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RZEXNfhC2ho=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RZEXNfhDeUQ=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhE1JY=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -880, + "top": -96, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhF08s=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 525, + "top": 1419.5, + "width": 64, + "height": 13, + "text": "查找空数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhGZmc=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -880, + "top": -96, + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhHCVU=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -880, + "top": -96, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 520, + "top": 1412.5, + "width": 75, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZEXNfhE1JY=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RZEXNfhF08s=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RZEXNfhGZmc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZEXNfhHCVU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RZEXNfhIvoY=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -440, + "top": -48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RZEXNvhJXeE=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -440, + "top": -48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RZEXNvhKzwc=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -440, + "top": -48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RZEXNvhLfS4=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -440, + "top": -48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RZEXNvhM3lA=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -440, + "top": -48, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 504, + "top": 1408, + "width": 106, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RZEXNfhIvoY=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RZEXNvhJXeE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RZEXNvhKzwc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RZEXNvhLfS4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RZEXNvhM3lA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZE5Jvvk8+0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vlq9g=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "font": "Arial;13;0", + "left": 695, + "top": 1455, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 1, + "text": "+无" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vm7FE=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 703, + "top": 1470, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vn7vY=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 710, + "top": 1426, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/voHLE=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 779, + "top": 1467, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vpdnU=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 774, + "top": 1479, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vqSPU=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 787, + "top": 1440, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vrD3M=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 633, + "top": 1445, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vslRk=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 633, + "top": 1459, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vtins=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 633, + "top": 1417, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZE5J/vuuHI=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZE5J/vvgB0=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "tail": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "lineStyle": 1, + "points": "807:1462;610:1433", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZE5J/vlq9g=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZE5J/vm7FE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZE5J/vn7vY=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZE5J/voHLE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZE5J/vpdnU=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZE5J/vqSPU=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZE5J/vrD3M=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZE5J/vslRk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZE5J/vtins=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZE5J/vuuHI=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZE5J/vvgB0=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZGEZgj/XLs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkArOw=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "font": "Arial;13;0", + "left": 717, + "top": 1336, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkB2TY=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 722, + "top": 1322, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkChVo=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 738, + "top": 1365, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkDRjc=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 621, + "top": 1377, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkERZ0=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 619, + "top": 1364, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkFONE=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 627, + "top": 1404, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkGzgA=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 833, + "top": 1296, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkHVm4=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 826, + "top": 1284, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkIGXU=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 847, + "top": 1320, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZGEZgkJQgE=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZGEZgkK2ek=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "tail": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "lineStyle": 1, + "points": "603:1407;863:1307", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZGEZgkArOw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZGEZgkB2TY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZGEZgkChVo=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZGEZgkDRjc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZGEZgkERZ0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZGEZgkFONE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZGEZgkGzgA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZGEZgkHVm4=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZGEZgkIGXU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZGEZgkJQgE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZGEZgkK2ek=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZHb+w38rbY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w39z3k=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "font": "Arial;13;0", + "left": 477, + "top": 952, + "width": 20.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 1, + "text": "+无" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w3+E8c=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 472, + "top": 954, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w3/cnc=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 516, + "top": 949, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4A7LA=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 536, + "top": 1376, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4BF6A=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 522, + "top": 1376, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4COx0=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 563, + "top": 1378, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4DS1Q=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 439, + "top": 528, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4Efb8=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 426, + "top": 532, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4Fx+M=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 465, + "top": 521, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZHb+w4GxWE=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZHb+w4HFa8=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "lineStyle": 1, + "points": "554:1407;451:507", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZHb+w39z3k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZHb+w3+E8c=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZHb+w3/cnc=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZHb+w4A7LA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZHb+w4BF6A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZHb+w4COx0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZHb+w4DS1Q=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZHb+w4Efb8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZHb+w4Fx+M=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZHb+w4GxWE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZHb+w4HFa8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RZ6XBji6Gjs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RZ6XBji742g=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji84Lo=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji96yI=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "font": "Arial;13;1", + "left": 1112, + "top": 1595.5, + "width": 79, + "height": 13, + "text": "doMoveBack" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji+VvE=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 73.67724609375, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji/AjM=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1107, + "top": 1588.5, + "width": 90.18994140625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZ6XBji84Lo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RZ6XBji96yI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RZ6XBji+VvE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZ6XBji/AjM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RZ6XBjjASWk=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RZ6XBzjBtGc=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RZ6XBzjCvBw=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RZ6XBzjD9LY=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RZ6XBzjEkZ0=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1088, + "top": 1584, + "width": 127, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RZ6XBjjASWk=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RZ6XBzjBtGc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RZ6XBzjCvBw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RZ6XBzjD9LY=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RZ6XBzjEkZ0=" + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P5nMrk1mLCw=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "check2C", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P5saV03F9So=", + "_parent": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "name": "通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5saV03GReQ=", + "_parent": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "reference": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5saV03HrLQ=", + "_parent": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "reference": { + "$ref": "AAAAAAF5P5rmBE2WOV0=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P56tf07Epig=", + "_parent": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P56tgE7F7Yk=", + "_parent": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "reference": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P56tgE7GNNA=", + "_parent": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "reference": { + "$ref": "AAAAAAF5P56LY06KFIA=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P5rmBE2WOV0=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "recordClean" + }, + { + "_type": "UMLUseCaseSubject", + "_id": "AAAAAAF5P5vlT04vpIc=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "用户选择操作" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P56LY06KFIA=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "【用户选择操作】", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P5/ask/ASWM=", + "_parent": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "name": "选择忽略or重测目标", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5/ask/BASE=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "reference": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5/ask/CwwU=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6ETu1Fsgo0=", + "_parent": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "name": "重测测回", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6ETu1FtUvs=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "reference": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6ETu1Fuzfc=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "reference": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P5/CAk96MB0=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "Idle" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P6Btl1DQYFs=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "【提示用户是否确定删除整个测回】", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6HZl1I+eIg=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "name": "选择忽略or取消", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6HZl1I/u/s=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "reference": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6HZl1JAt1Q=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6Jc6FP89fs=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "name": "确认删除", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6Jc6FP9Ay0=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "reference": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6Jc6FP+W/w=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "reference": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P6IYDFMK28k=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "【执行删除操作】", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6KuWFYuLA4=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6KuWFYvXto=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "reference": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6KuWFYwtmg=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P6I/oFN00qM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "重新搜索目标开启新一轮测量", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJXgiQky2RI=", + "_parent": { + "$ref": "AAAAAAF5P6I/oFN00qM=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJXgiQkzVQM=", + "_parent": { + "$ref": "AAAAAAF5QJXgiQky2RI=" + }, + "reference": { + "$ref": "AAAAAAF5P6I/oFN00qM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJXgiQk0kU4=", + "_parent": { + "$ref": "AAAAAAF5QJXgiQky2RI=" + }, + "reference": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJWvCggxZrM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "move2NextValidate", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVWv2lZqu2A=", + "_parent": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVWv2lZro+8=", + "_parent": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "reference": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVWv2lZs/XI=", + "_parent": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "reference": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJc4CA2m0sA=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkHalfCycleZero", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJesYRAUeZI=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "name": "测站不闭合or半测回归零差正常", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJesYRAV/Pw=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "reference": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJesYRAWIno=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "reference": { + "$ref": "AAAAAAF5QJeXAw9WAQQ=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJmQwBdscKg=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "name": "没有通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJmQwBdt/Nk=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "reference": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJmQwBdu0wk=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "reference": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJeXAw9WAQQ=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isReady2CCheck" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJjLZBMJQJ8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "switchState2StandStill", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJnk3RnjFKU=", + "_parent": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnk3Rnk4S8=", + "_parent": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnk3Rnlvxc=", + "_parent": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJk5ohVWyGc=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示半测回归零检测失败", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJnHsRkKHYc=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnHsRkLdTo=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "reference": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnHsRkM5N4=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJ6ahSPVJNg=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkReadData", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJ87Oyj+dCg=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "name": "单测量or通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ87Oyj/TJQ=", + "_parent": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "reference": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ87OykA4RY=", + "_parent": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "reference": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJ/Ugywh52g=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/Ugywiha4=", + "_parent": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "reference": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/UgywjRPE=", + "_parent": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "reference": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJ8m8Sf4R1w=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isHalfCycleZeroCheckReady" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJ+mRitXafY=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示读数有误", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJ/0PCz+xYo=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/0PCz/2CU=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "reference": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/0PC0AjHo=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKE6OTfx/D4=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkSingleCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QKI4y0KDGow=", + "_parent": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "name": "通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKI4zEKEuw8=", + "_parent": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "reference": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKI4zEKFtZg=", + "_parent": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "reference": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QKvMIE8VEZE=", + "_parent": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKvMIE8WKCE=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "reference": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKvMIE8XsG8=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKIG+T9Wjdo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isAllCycleCompleted" + }, + { + "_type": "UMLUseCaseSubject", + "_id": "AAAAAAF5QKJM6UPX41c=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "UseCaseSubject1" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKuCwkzWMuI=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示用户选择", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QK2Ql1lrW/0=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "name": "忽略", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK2Ql1lsCzU=", + "_parent": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK2Ql1ltUBY=", + "_parent": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QLdiW2HmZcI=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLdiW2HnzLc=", + "_parent": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLdiW2HodP8=", + "_parent": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "reference": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QMnaf4pzXpA=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMnaf4p0R7o=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMnaf4p1n0A=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKyR6VB8Gq8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "重测方向", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QLx6RGoJ91g=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLx6RGoKxZI=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "reference": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLx6RGoLs1U=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "reference": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKysH1F2Xh8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "重测测回", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QNAhapFq3kM=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "name": "取消", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNAhapFrudc=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNAhapFsZZ8=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QNFL6qCXEtU=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "name": "忽略", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNFL6qCY2AQ=", + "_parent": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNFL6qCZ01s=", + "_parent": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVcwNF0hcaI=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVcwNF0iVWE=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVcwNF0jQf0=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "reference": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKzDRVJwpI4=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "resetSurveyorStateAndKeepPosition", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QK340l0BzRk=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK340l0ChAw=", + "_parent": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK340l0D79M=", + "_parent": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QLwOJ2bN7N0=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "resurveyPoints", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QMbzEHNMUo0=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "name": "开始重测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMbzEHNNh8o=", + "_parent": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "reference": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMbzEHNOm6M=", + "_parent": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + }, + { + "_type": "UMLGeneralization", + "_id": "AAAAAAF5QMevPnTKBWs=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "name": "重测失败", + "source": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "target": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVTunkvVKUs=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "name": "重测失败", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVTun0vWQ0U=", + "_parent": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "reference": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVTun0vXr0g=", + "_parent": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QMaQUG/pf+g=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "switchState2RestartInCurrentCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QMjEpoXtFac=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMjEpoXuicM=", + "_parent": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMjEpoXvKNs=", + "_parent": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "reference": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RVbpp1nIOnU=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "执行测回删除", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVdEqWBKDgY=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVdEqWBL2Ro=", + "_parent": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "reference": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVdEqWBMaWs=", + "_parent": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWbWh5Q82SE=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doCalScheduleSingleCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWkDr6/4piw=", + "_parent": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWkDr6/5hKI=", + "_parent": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "reference": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWkDr6/6Fyk=", + "_parent": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + } + } + } + ] + }, + { + "_type": "UMLUseCaseSubject", + "_id": "AAAAAAF5RWdznZ2YK/Q=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "UseCaseSubject2" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWiYh6tdXHE=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "该测回是否完成测量", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWmAObifwr4=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "name": "未完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWmAObigyuY=", + "_parent": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWmAObih5u0=", + "_parent": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWqc8svr3pE=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "name": "完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWqc8svs8AE=", + "_parent": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWqc8svtE1U=", + "_parent": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWo+Icga7No=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "执行单测回检测", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWvJyNWC314=", + "_parent": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWvJyNWDYLg=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWvJyNWEI/s=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWxGx9n5fHg=", + "_parent": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "name": "通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWxGx9n6uSs=", + "_parent": { + "$ref": "AAAAAAF5RWxGx9n5fHg=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWxGx9n7A0k=", + "_parent": { + "$ref": "AAAAAAF5RWxGx9n5fHg=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RXgsE81LcLM=", + "_parent": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "name": "通过", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXgsE81Ml9Y=", + "_parent": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXgsE81Ncj4=", + "_parent": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "reference": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWzzg+QnXQo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doCalScheduleAllCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RXS1D5dDHCY=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXS1D5dEJJs=", + "_parent": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "reference": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXS1D5dF2N4=", + "_parent": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RXZT3reRJjE=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "是否是doCalScheduleAllCycle状态", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RXiiW9aJDaw=", + "_parent": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "name": "不是", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXiiW9aKkno=", + "_parent": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "reference": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXiiW9aL3M4=", + "_parent": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RX50xeaOm84=", + "_parent": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "name": "是", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX50xeaPW6s=", + "_parent": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "reference": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX50xeaQJxA=", + "_parent": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "reference": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RX4IzeDinbw=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回是否有待补测数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RX9EYPFbm2U=", + "_parent": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX9EYPFcd3k=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "reference": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX9EYPFdtmc=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYXKoEPvmVE=", + "_parent": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "name": "无", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYXKoUPwWeY=", + "_parent": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "reference": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYXKoUPxCsE=", + "_parent": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "reference": { + "$ref": "AAAAAAF5RYWBNT536bM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RX8e8+6Tpi8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示用户选择", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYA6LQaqG8I=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "name": "跳转到相应测回", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYA6LQaryvU=", + "_parent": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYA6LQashgM=", + "_parent": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "reference": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYRxIiqJIUE=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "name": "忽略或取消", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYRxIyqKuUY=", + "_parent": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYRxIyqLN6Y=", + "_parent": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RX+92vrrsgo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "切换测回", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RX/wMv3F6d4=", + "_parent": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX/wMv3GM64=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "reference": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX/wMv3HIz8=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RYWBNT536bM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回是否有空数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYbKCEsJsiQ=", + "_parent": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYbKCEsKkG0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "reference": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYbKCEsLR+0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYqgkaOybww=", + "_parent": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "name": "无空测回", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYqgkaOzOcA=", + "_parent": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "reference": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYqgkaO0Gyw=", + "_parent": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "reference": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RYo1sJrxVxU=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回合法性", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYuGza0vDqU=", + "_parent": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "name": "发现有测回未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYuGza0wl4I=", + "_parent": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "reference": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYuGza0xzjs=", + "_parent": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RY5M4rVOVIM=", + "_parent": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "name": "全部通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY5M4rVPReU=", + "_parent": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "reference": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY5M4rVQGdM=", + "_parent": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RY+P3cq56es=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "switchState2Idle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RY/lWtHqafY=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY/lW9Hrql4=", + "_parent": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "reference": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY/lW9HsN84=", + "_parent": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RZAQp9i7BLM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "查找待补测数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZDsue7baAw=", + "_parent": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZDsue7cAPs=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "reference": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZDsue7dBLs=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "reference": { + "$ref": "AAAAAAF5RY+P3cq56es=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZE5JvvgNmk=", + "_parent": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "name": "无", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZE5Jvvh7eI=", + "_parent": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "reference": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZE5JvviTz0=", + "_parent": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "reference": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RZEXNfhA9nA=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "查找空数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZGEZgj773A=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZGEZgj8gpI=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "reference": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZGEZgj9p0E=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "reference": { + "$ref": "AAAAAAF5RY+P3cq56es=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZHb+g34JOw=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "name": "无", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZHb+g35LNk=", + "_parent": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "reference": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZHb+g36Mvo=", + "_parent": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RZ6XBTi4yu4=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doMoveBack" + } + ] + }, + { + "_type": "UMLProfile", + "_id": "AAAAAAFElnEzslS1AuE=", + "_parent": { + "$ref": "AAAAAAFElm5XMFNoGY0=" + }, + "name": "UMLStandardProfile", + "ownedElements": [ + { + "_type": "UMLProfileDiagram", + "_id": "AAAAAAFElnFUQFS4mT4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "StandardProfileL2", + "ownedViews": [ + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFElnFrT1S8vVg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFElnFrT1S9WOE=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S8vVg=" + }, + "model": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1S+aHM=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": -44, + "top": -16, + "width": 1, + "height": 12 + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1S/1HM=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 57, + "top": 59, + "width": 81, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1TAD0M=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 57, + "top": 73, + "width": 81, + "height": 12, + "text": "UMLClassifier" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1TBaUI=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": -44, + "top": -16, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1TCF/Y=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": -44, + "top": -16, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 52, + "top": 52, + "width": 91, + "height": 38, + "stereotypeLabel": { + "$ref": "AAAAAAFElnFrT1S/1HM=" + }, + "nameLabel": { + "$ref": "AAAAAAFElnFrT1TAD0M=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFElnFrT1TBaUI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnFrT1TCF/Y=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 52, + "top": 52, + "width": 91, + "height": 101, + "nameCompartment": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFElnF1nFTadPw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqCEfLOas=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFElnF1nFTbplQ=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTcCng=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 1, + "height": 12 + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTd3xg=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 213, + "top": 55, + "width": 83, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTewJM=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 213, + "top": 69, + "width": 83, + "height": 12, + "text": "Realization" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTfQRQ=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTgrV8=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 48, + "width": 93, + "height": 38, + "stereotypeLabel": { + "$ref": "AAAAAAFElnF1nVTd3xg=" + }, + "nameLabel": { + "$ref": "AAAAAAFElnF1nVTewJM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFElnF1nVTfQRQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnF1nVTgrV8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFElnF1nVThfqA=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 86, + "width": 93, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFElnF1nVTiFXA=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 96, + "width": 93, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFElnF1nVTjasU=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 48, + "width": 93, + "height": 38, + "nameCompartment": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFElnF1nVThfqA=" + }, + "operationCompartment": { + "$ref": "AAAAAAFElnF1nVTiFXA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqCEfLOas=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFElnF1nVTjasU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFElnGGLFUGHnM=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnGGLFUH+8s=", + "_parent": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 174, + "top": 73, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnGGLFUIOR8=", + "_parent": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "visible": null, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 174, + "top": 88, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnGGLFUJv6k=", + "_parent": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 175, + "top": 43, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "head": { + "$ref": "AAAAAAFElnFrT1S8vVg=" + }, + "tail": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "points": "208:64;142:64", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFElnGGLFUH+8s=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFElnGGLFUIOR8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnGGLFUJv6k=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFElnJRglVMyB8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqCkfpKls=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFElnJRglVN/RI=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVO7ow=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 1, + "height": 12 + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVPiBM=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 217, + "top": 119, + "width": 74.73593139648438, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVQT1k=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 217, + "top": 133, + "width": 74.73593139648438, + "height": 12, + "text": "Specification" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVRdk8=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVSFic=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 112, + "width": 84.73593139648438, + "height": 38, + "stereotypeLabel": { + "$ref": "AAAAAAFElnJRglVPiBM=" + }, + "nameLabel": { + "$ref": "AAAAAAFElnJRglVQT1k=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFElnJRglVRdk8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnJRglVSFic=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFElnJRglVTXPE=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 150, + "width": 84, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFElnJRglVUe0c=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 160, + "width": 84, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFElnJRg1VVWNU=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 112, + "width": 84.73593139648438, + "height": 38, + "nameCompartment": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFElnJRglVTXPE=" + }, + "operationCompartment": { + "$ref": "AAAAAAFElnJRglVUe0c=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqCkfpKls=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFElnJRg1VVWNU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFElnKVuVV5hVg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnKVuVV6VLo=", + "_parent": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 176, + "top": 141, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnKVuVV7m9U=", + "_parent": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "visible": null, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 176, + "top": 156, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnKVuVV8bvU=", + "_parent": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 177, + "top": 111, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "head": { + "$ref": "AAAAAAFElnFrT1S8vVg=" + }, + "tail": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "points": "212:132;142:132", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFElnKVuVV6VLo=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFElnKVuVV7m9U=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnKVuVV8bvU=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFJsZbpDNpnkE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFJsZbpTNq6XM=", + "_parent": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNrbHw=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 561, + "top": 209, + "width": 87, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNsdGc=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 561, + "top": 223, + "width": 87, + "height": 12, + "text": "UMLClass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNtikk=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 1500, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNuOXU=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 1500, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 556, + "top": 204, + "width": 97, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFJsZbpTNrbHw=" + }, + "nameLabel": { + "$ref": "AAAAAAFFJsZbpTNsdGc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFJsZbpTNtikk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFJsZbpTNuOXU=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 556, + "top": 204, + "width": 97, + "height": 305, + "nameCompartment": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwKqhJFq1z2Y=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKqhJFq2eQM=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "model": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq3hUU=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 57, + "top": 209, + "width": 79, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq4Vb4=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 57, + "top": 223, + "width": 79, + "height": 12, + "text": "UMLArtifact" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq5GlQ=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq6Fls=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 52, + "top": 204, + "width": 89, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKqhJFq3hUU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKqhJFq4Vb4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKqhJFq5GlQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKqhJFq6Fls=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 52, + "top": 204, + "width": 89, + "height": 329, + "nameCompartment": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKsvdVrTyNI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqDUglDBo=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKsvdVrUE8w=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrVvYg=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 237, + "top": 209, + "width": 119, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrW/Dg=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "font": "Arial;12;3", + "containerExtending": true, + "left": 237, + "top": 223, + "width": 119, + "height": 12, + "text": "File" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrXXrQ=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 48, + "top": -12, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrYnv8=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 48, + "top": -12, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 232, + "top": 204, + "width": 129, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKsvdVrVvYg=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKsvdVrW/Dg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKsvdVrXXrQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKsvdVrYnv8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKsvdVrZA0U=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 248, + "top": 236, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKsvdlraVvA=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 248, + "top": 236, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKsvdlrbd2U=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 32, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 232, + "top": 204, + "width": 129, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKsvdVrZA0U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKsvdlraVvA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqDUglDBo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKsvdlrbd2U=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKtwS1r8DQQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqDUg7My0=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKtwS1r9YJ4=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1r+fw8=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 313, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1r/Lsw=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 189, + "top": 327, + "width": 72.51593017578125, + "height": 12, + "text": "Document" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1sAGYA=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 24, + "top": 24, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1sB7y4=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 24, + "top": 24, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 184, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKtwS1r+fw8=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKtwS1r/Lsw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKtwS1sAGYA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKtwS1sB7y4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKtwTFsC02k=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 192, + "top": 352, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKtwTFsD5lc=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 192, + "top": 352, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKtwTFsEQlE=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 16, + "top": 16, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 184, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKtwTFsC02k=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKtwTFsD5lc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqDUg7My0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKtwTFsEQlE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKuBulskCVg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqDkhRFFg=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKuBulsld0g=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBulsmb/s=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 257, + "top": 357, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBulsnKBI=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 257, + "top": 371, + "width": 72.51593017578125, + "height": 12, + "text": "Executable" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBu1soKF0=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -48, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBu1spOXA=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -48, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "top": 352, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKuBulsmb/s=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKuBulsnKBI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKuBu1soKF0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKuBu1spOXA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKuBu1sqPhk=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 284, + "top": 372, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKuBu1srnoE=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 284, + "top": 372, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKuBu1ssVVg=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 64, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "top": 352, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKuBu1sqPhk=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKuBu1srnoE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqDkhRFFg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKuBu1ssVVg=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKuIMltMJw4=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqD0hnnhc=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKuIMltNJK8=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tO63M=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 321, + "top": 405, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tPj60=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 321, + "top": 419, + "width": 72.51593017578125, + "height": 12, + "text": "Library" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tQD7A=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 132, + "top": -108, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tRSSY=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 132, + "top": -108, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 316, + "top": 400, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKuIM1tO63M=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKuIM1tPj60=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKuIM1tQD7A=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKuIM1tRSSY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKuIM1tSiN4=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 360, + "top": 400, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKuIM1tTPjo=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 360, + "top": 400, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKuIM1tUHbM=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 88, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 316, + "top": 400, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKuIM1tSiN4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKuIM1tTPjo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqD0hnnhc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKuIM1tUHbM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKuS0lt0dAE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqEEh93KM=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKuS0lt1+MM=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt2XgE=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 385, + "top": 453, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt36r8=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 385, + "top": 467, + "width": 72.51593017578125, + "height": 12, + "text": "Script" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt4pP4=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 180, + "top": -180, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt5mi4=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 180, + "top": -180, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 448, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKuS0lt2XgE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKuS0lt36r8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKuS0lt4pP4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKuS0lt5mi4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKuS0lt6gjg=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 424, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKuS0lt7fo0=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 424, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKuS0lt8w2A=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": -120, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 448, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKuS0lt6gjg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKuS0lt7fo0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqEEh93KM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKuS0lt8w2A=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKueMluc5bE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqEUiTykw=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKueMludFfk=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMlueAco=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 445, + "top": 501, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMluflfo=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 445, + "top": 515, + "width": 72.51593017578125, + "height": 12, + "text": "Source" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMlughos=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -108, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMluhfws=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -108, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 496, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKueMlueAco=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKueMluflfo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKueMlughos=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKueMluhfws=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKueMluihu4=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 500, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKueMlujEyo=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 500, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKueMlukJo8=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 496, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKueMluihu4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKueMlujEyo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqEUiTykw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKueMlukJo8=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKzkslvYVdw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzkslvZbd0=", + "_parent": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 258, + "top": 267, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzks1vasdU=", + "_parent": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 258, + "top": 252, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzks1vby/c=", + "_parent": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 258, + "top": 297, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "points": "216:308;216:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKzkslvZbd0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKzks1vasdU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKzks1vby/c=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKzsCVvpt2A=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzsCVvqAUg=", + "_parent": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 285, + "top": 289, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzsCVvrTi8=", + "_parent": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 270, + "top": 289, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzsCVvsewQ=", + "_parent": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 314, + "top": 290, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "points": "300:352;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKzsCVvqAUg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKzsCVvrTi8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKzsCVvsewQ=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKzxcVv6A2c=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzxcVv7wpA=", + "_parent": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 327, + "top": 297, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzxcVv8NxM=", + "_parent": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 327, + "top": 312, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzxcVv9X58=", + "_parent": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 328, + "top": 267, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "points": "356:400;356:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKzxcVv7wpA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKzxcVv8NxM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKzxcVv9X58=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKz3OVwLl+8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz3OVwMNB4=", + "_parent": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 357, + "top": 297, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz3OVwNd3E=", + "_parent": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 357, + "top": 312, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz3OVwODiI=", + "_parent": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 358, + "top": 267, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "points": "416:448;416:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKz3OVwMNB4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKz3OVwNd3E=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKz3OVwODiI=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKz9mVwcos8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz9mVwdsGc=", + "_parent": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 391, + "top": 297, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz9mVweYvs=", + "_parent": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 391, + "top": 312, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz9mVwfOSk=", + "_parent": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 392, + "top": 267, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "points": "484:496;484:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKz9mVwdsGc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKz9mVweYvs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKz9mVwfOSk=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK4k1VxFxwI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4k1lxGUvg=", + "_parent": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 161, + "top": 333, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4k1lxHABk=", + "_parent": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 161, + "top": 348, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4k1lxIpIg=", + "_parent": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 162, + "top": 303, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "points": "184:324;140:324", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK4k1lxGUvg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK4k1lxHABk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK4k1lxIpIg=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK4o4VxWQBI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4o4VxXVGc=", + "_parent": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 195, + "top": 378, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4o4VxYgZc=", + "_parent": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 195, + "top": 393, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4o4VxZqsQ=", + "_parent": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 196, + "top": 348, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "points": "252:369;140:369", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK4o4VxXVGc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK4o4VxYgZc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK4o4VxZqsQ=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK4tiVxnpno=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4tiVxoTEk=", + "_parent": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 227, + "top": 429, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4tiVxpG0I=", + "_parent": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 227, + "top": 444, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4tiVxqKIY=", + "_parent": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 228, + "top": 399, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "points": "316:420;140:420", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK4tiVxoTEk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK4tiVxpG0I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK4tiVxqKIY=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK41YVx4sZw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK41YVx5rZ4=", + "_parent": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 259, + "top": 473, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK41YVx6mfE=", + "_parent": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 259, + "top": 488, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK41YVx7lFo=", + "_parent": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 443, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "points": "380:464;140:464", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK41YVx5rZ4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK41YVx6mfE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK41YVx7lFo=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK47MFyJhkk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK47MFyKeH8=", + "_parent": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 289, + "top": 521, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK47MVyL2Gg=", + "_parent": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 289, + "top": 536, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK47MVyMJyk=", + "_parent": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 290, + "top": 491, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "points": "440:512;140:512", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK47MFyKeH8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK47MVyL2Gg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK47MVyMJyk=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK5AeFyarms=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK5AeFybX8s=", + "_parent": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 185, + "top": 229, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK5AeFycm2c=", + "_parent": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 185, + "top": 244, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK5AeVydbSU=", + "_parent": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 186, + "top": 199, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "points": "232:220;140:220", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK5AeFybX8s=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK5AeFycm2c=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK5AeVydbSU=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwK/k1ly1mNU=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwK/k1ly236Y=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly1mNU=" + }, + "model": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k1ly3kes=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 385, + "top": 585, + "width": 132, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k1ly4Kb0=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 385, + "top": 599, + "width": 132, + "height": 12, + "text": "UMLBehavioralFeature" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k11y5jis=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 972, + "top": 60, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k11y6pH4=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 972, + "top": 60, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 580, + "width": 142, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK/k1ly3kes=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwK/k1ly4Kb0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwK/k11y5jis=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK/k11y6pH4=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 580, + "width": 142, + "height": 101, + "nameCompartment": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLBdPFzSzQk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqFkkF9pQ=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLBdPFzT/sk=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzUtqg=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 589, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzVTVM=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 603, + "width": 72.51593017578125, + "height": 12, + "text": "Destroy" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzWXGg=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": 24, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzX7Kw=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": 24, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 584, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLBdPFzUtqg=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLBdPFzVTVM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLBdPFzWXGg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLBdPFzX7Kw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLBdPFzYl0A=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 632, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLBdPFzZMKQ=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 632, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLBdPFzaqUA=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 80, + "top": 16, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 584, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLBdPFzYl0A=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLBdPFzZMKQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqFkkF9pQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLBdPFzaqUA=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLDMaFz6CG0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLDMaFz7zuA=", + "_parent": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 349, + "top": 579, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLDMaFz8JJ4=", + "_parent": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 349, + "top": 564, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLDMaFz92bU=", + "_parent": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 349, + "top": 609, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwK/k1ly1mNU=" + }, + "tail": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "points": "318:600;380:600", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLDMaFz7zuA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLDMaFz8JJ4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLDMaFz92bU=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLFUbV0ScDI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqF0kiyCM=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLFUbV0TTdY=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0UvYs=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 209, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0V4oU=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 223, + "width": 72.51593017578125, + "height": 12, + "text": "Auxiliary" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0WLEA=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -336, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0XEPg=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -336, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 204, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLFUbV0UvYs=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLFUbV0V4oU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLFUbV0WLEA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLFUbV0XEPg=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLFUbV0YxWc=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 128, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLFUbV0Z3Xk=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 128, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLFUbV0aLJo=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -224, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 204, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLFUbV0YxWc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLFUbV0Z3Xk=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqF0kiyCM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLFUbV0aLJo=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLFu9F06sWk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqGEk49nc=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLFu9F07mo0=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F08FIY=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 261, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F09Ig0=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 275, + "width": 72.51593017578125, + "height": 12, + "text": "Focus" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F0+sYU=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -420, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F0/2cA=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -420, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 256, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLFu9F08FIY=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLFu9F09Ig0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLFu9F0+sYU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLFu9F0/2cA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLFu9F1A690=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 152, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLFu9F1BAsU=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 152, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLFu9F1CLR8=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -280, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 256, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLFu9F1A690=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLFu9F1BAsU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqGEk49nc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLFu9F1CLR8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLF4tF1iftI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqGUlOO9I=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLF4tF1jr/w=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1kg2Y=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 313, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1la4E=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 327, + "width": 72.51593017578125, + "height": 12, + "text": "Metaclass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1mW9o=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -480, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1ngPk=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -480, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLF4tF1kg2Y=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLF4tF1la4E=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLF4tF1mW9o=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLF4tF1ngPk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLF4tF1oP5U=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 184, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLF4tF1pEYI=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 184, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLF4tF1qaMM=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -320, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLF4tF1oP5U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLF4tF1pEYI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqGUlOO9I=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLF4tF1qaMM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLF/G12KFPg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqGUlk1Tc=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLF/G12LESY=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12MFWs=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 365, + "width": 121, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12Nq6M=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 379, + "width": 121, + "height": 12, + "text": "ImplementationClass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12OWK0=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -564, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12PipY=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -564, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 360, + "width": 131, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLF/G12MFWs=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLF/G12Nq6M=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLF/G12OWK0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLF/G12PipY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLF/G12QJs8=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 208, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLF/G12Rf8c=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 208, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLF/HF2Sm8E=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -376, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 360, + "width": 131, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLF/G12QJs8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLF/G12Rf8c=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqGUlk1Tc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLF/HF2Sm8E=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLGEPF2y6SI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqHEl6Zbo=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLGEPF2zyUI=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF20OuI=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 421, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF21TcM=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 435, + "width": 72.51593017578125, + "height": 12, + "text": "Type" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF22f/8=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -624, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF23oz0=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -624, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 416, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLGEPF20OuI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLGEPF21TcM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLGEPF22f/8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLGEPF23oz0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLGEPF24D5Y=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 244, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLGEPF252Tg=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 244, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLGEPF26r38=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -416, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 416, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLGEPF24D5Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLGEPF252Tg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqHEl6Zbo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLGEPF26r38=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLGI813a/Lo=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqHEmQAJ4=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLGI813bmDw=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3c6dc=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 477, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3dgjo=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 491, + "width": 72.51593017578125, + "height": 12, + "text": "Utility" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3eWQw=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -672, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3fVUI=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -672, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 472, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLGI9F3c6dc=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLGI9F3dgjo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLGI9F3eWQw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLGI9F3fVUI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLGI9F3g9+w=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 284, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLGI9F3hmIE=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 284, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLGI9F3i+8k=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -448, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 472, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLGI9F3g9+w=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLGI9F3hmIE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqHEmQAJ4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLGI9F3i+8k=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNej158NLk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNej1590I0=", + "_parent": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 233, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNej15+8jc=", + "_parent": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 248, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNej15/BRY=", + "_parent": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 203, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "points": "720:224;652:224", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNej1590I0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNej15+8jc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNej15/BRY=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNkZ16NQ/Q=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNkZ16OhBQ=", + "_parent": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 281, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNkZ16PBtY=", + "_parent": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 296, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNkZ16QvLQ=", + "_parent": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 251, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "points": "720:272;652:272", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNkZ16OhBQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNkZ16PBtY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNkZ16QvLQ=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNn916eDZQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNn916fvYQ=", + "_parent": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 333, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNn916guUU=", + "_parent": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 348, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNn916hjhM=", + "_parent": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 303, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "points": "720:324;652:324", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNn916fvYQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNn916guUU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNn916hjhM=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNr116vKpE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNr116weUM=", + "_parent": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 385, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNr116xjvo=", + "_parent": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 400, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNr116yGN0=", + "_parent": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 355, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "points": "720:376;652:376", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNr116weUM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNr116xjvo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNr116yGN0=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNvdl7AF7U=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNvd17Byl0=", + "_parent": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 442, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNvd17Cmyo=", + "_parent": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 457, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNvd17DduQ=", + "_parent": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 412, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "points": "720:433;652:433", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNvd17Byl0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNvd17Cmyo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNvd17DduQ=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLN0fl7RscA=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLN0fl7SzeE=", + "_parent": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 498, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLN0fl7Tq3c=", + "_parent": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 513, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLN0f17UptI=", + "_parent": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 468, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "points": "720:489;652:489", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLN0fl7SzeE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLN0fl7Tq3c=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLN0f17UptI=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwLRECl7stC8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLRECl7tsQE=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7u5vE=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 561, + "top": 545, + "width": 92.85594177246094, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7vrCk=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 561, + "top": 559, + "width": 92.85594177246094, + "height": 12, + "text": "UMLComponent" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7wqHs=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7xJrI=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 540, + "width": 102.85594177246094, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLRECl7u5vE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLRECl7vrCk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLRECl7wqHs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLRECl7xJrI=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 540, + "width": 102.85594177246094, + "height": 261, + "nameCompartment": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLR8CV8I99Y=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqH0nfZIU=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLR8CV8JFWY=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8Knxc=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 549, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8LWIw=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 563, + "width": 72.51593017578125, + "height": 12, + "text": "Entity" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8Mvqc=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8NdIc=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 544, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLR8CV8Knxc=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLR8CV8LWIw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLR8CV8Mvqc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLR8CV8NdIc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLR8CV8OpVY=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 748, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLR8CV8PW8k=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 748, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLR8Cl8QCTM=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 336, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 544, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLR8CV8OpVY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLR8CV8PW8k=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqH0nfZIU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLR8Cl8QCTM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSByF8w+gI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIEn1Irc=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSByF8x/Yc=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF8yMLo=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 597, + "width": 88.67578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF8zspI=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 611, + "width": 88.67578125, + "height": 12, + "text": "Implementation" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF80AnU=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 420, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF81b24=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 420, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 592, + "width": 98.67578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSByF8yMLo=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSByF8zspI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSByF80AnU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSByF81b24=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSByF82e10=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 768, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSByF83aE4=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 768, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSByF84G88=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -8, + "top": 280, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 592, + "width": 98.67578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSByF82e10=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSByF83aE4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIEn1Irc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSByF84G88=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSIN19Ytdk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIUoLdrY=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSIN19ZQ0U=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9a8kE=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 653, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9bYBg=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 667, + "width": 72.51593017578125, + "height": 12, + "text": "Process" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9cqZQ=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 348, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9dI5U=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 348, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 648, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSIOF9a8kE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSIOF9bYBg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSIOF9cqZQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSIOF9dI5U=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSIOF9ekq0=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 800, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSIOF9fibc=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 800, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSIOF9gUN0=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -8, + "top": 232, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 648, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSIOF9ekq0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSIOF9fibc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIUoLdrY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSIOF9gUN0=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSO/1+AoeQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIkohl1g=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSO/1+BWGA=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSO/1+CG1s=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 709, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSO/1+DoUc=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 723, + "width": 72.51593017578125, + "height": 12, + "text": "Service" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSPAF+EVIo=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 312, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSPAF+FZR8=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 312, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 704, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSO/1+CG1s=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSO/1+DoUc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSPAF+EVIo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSPAF+FZR8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSPAF+GnaI=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 844, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSPAF+Ho/s=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 844, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSPAF+I3E8=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -8, + "top": 208, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 704, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSPAF+GnaI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSPAF+Ho/s=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIkohl1g=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSPAF+I3E8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSXP1+o0Kw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIko3HYE=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSXP1+peko=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+qR3g=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 765, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+rnfg=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 779, + "width": 72.51593017578125, + "height": 12, + "text": "Subsystem" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+sqCM=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 252, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+t4Mc=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 252, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 760, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSXP1+qR3g=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSXP1+rnfg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSXP1+sqCM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSXP1+t4Mc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSXP1+uKrA=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 880, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSXP1+vdxM=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 880, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSXP1+woFc=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 760, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSXP1+uKrA=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSXP1+vdxM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIko3HYE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSXP1+woFc=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLV9gV/Ybio=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLV9gV/Z8CU=", + "_parent": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 569, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLV9gl/a23I=", + "_parent": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 584, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLV9gl/b3BU=", + "_parent": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 539, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "points": "720:560;658:560", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLV9gV/Z8CU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLV9gl/a23I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLV9gl/b3BU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWA0V/pWEg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWA0V/q2AI=", + "_parent": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 621, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWA0V/rrYc=", + "_parent": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 636, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWA0V/spgM=", + "_parent": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 591, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "points": "720:612;658:612", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWA0V/q2AI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWA0V/rrYc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWA0V/spgM=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWEUV/6d1E=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWEUV/78Ig=", + "_parent": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 677, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWEUV/8eIM=", + "_parent": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 692, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWEUV/9T0A=", + "_parent": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 647, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "points": "720:668;658:668", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWEUV/78Ig=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWEUV/8eIM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWEUV/9T0A=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWIQWALE8M=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWIQWAMDo8=", + "_parent": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 737, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWIQWANo/A=", + "_parent": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 752, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWIQWAO6qA=", + "_parent": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 707, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "points": "720:728;658:728", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWIQWAMDo8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWIQWANo/A=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWIQWAO6qA=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWMgWAcaQw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWMgWAd1rc=", + "_parent": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 789, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWMgWAeZ8k=", + "_parent": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 804, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWMgWAfxqc=", + "_parent": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 759, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "points": "720:780;658:780", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWMgWAd1rc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWMgWAeZ8k=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWMgWAfxqc=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwL2WeWA5NQI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL2WeGA460g=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL2WeWA62bI=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "model": { + "$ref": "AAAAAAFFwL2WeGA460g=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA7mnk=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 61, + "top": 649, + "width": 98, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA8/Wk=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 61, + "top": 663, + "width": 98, + "height": 12, + "text": "UMLDependency" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA9NaM=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 144, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA+CiM=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 144, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 56, + "top": 644, + "width": 108, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL2WeWA7mnk=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL2WeWA8/Wk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL2WeWA9NaM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL2WeWA+CiM=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 56, + "top": 644, + "width": 108, + "height": 277, + "nameCompartment": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL4D0mBZIkY=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqJkp/rUc=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL4D0mBaqmw=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D0mBbBNE=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 649, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D0mBc7go=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 663, + "width": 69.380859375, + "height": 12, + "text": "Create" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D02Bd3+g=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -48, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D02BeWA8=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -48, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 644, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL4D0mBbBNE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL4D0mBc7go=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL4D02Bd3+g=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL4D02BeWA8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL4D02Bf0q0=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 664, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL4D02BgYs8=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 664, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL4D02BhsHw=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 644, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL4D02Bf0q0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL4D02BgYs8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqJkp/rUc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL4D02BhsHw=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL4h4WCCAAY=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqJ0qVBvA=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL4h4WCD82Y=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCE1YI=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 713, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCFbHY=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 727, + "width": 69.380859375, + "height": 12, + "text": "Call" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCG+Bo=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -108, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCHhD8=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -108, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 708, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL4h4mCE1YI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL4h4mCFbHY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL4h4mCG+Bo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL4h4mCHhD8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL4h4mCIEqs=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 708, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL4h4mCJktQ=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 708, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL4h4mCKdqI=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 708, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL4h4mCIEqs=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL4h4mCJktQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqJ0qVBvA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL4h4mCKdqI=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL45WWCr3cU=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqJ0qrDxY=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL45WWCsDkc=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCtTBI=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 769, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCuTW0=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 783, + "width": 69.380859375, + "height": 12, + "text": "Instantiate" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCv18Q=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -192, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCwZzE=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -192, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 764, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL45WWCtTBI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL45WWCuTW0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL45WWCv18Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL45WWCwZzE=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL45WWCxsuk=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 736, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL45WmCy+mU=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 736, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL45WmCzW1Y=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -128, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 764, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL45WWCxsuk=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL45WmCy+mU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqJ0qrDxY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL45WmCzW1Y=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL5hQGDUxa0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqKErBHOc=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL5hQGDVSBg=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDWrwI=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 825, + "width": 82.013671875, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDXPFU=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 839, + "width": 82.013671875, + "height": 12, + "text": "Responsibility" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDYpi0=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -252, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDZAt8=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -252, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 820, + "width": 92.013671875, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL5hQGDWrwI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL5hQGDXPFU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL5hQGDYpi0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL5hQGDZAt8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL5hQGDa1nY=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 772, + "width": 91, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL5hQGDbixI=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 772, + "width": 91, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL5hQGDcuS4=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 820, + "width": 92.013671875, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL5hQGDa1nY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL5hQGDbixI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqKErBHOc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL5hQGDcuS4=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL7KdWEqew0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqKErXxgY=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL7KdWEr60A=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEspPc=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 881, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEt7g0=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 895, + "width": 69.380859375, + "height": 12, + "text": "Send" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEum1Q=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -324, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEv3Yk=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -324, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 876, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL7KdWEspPc=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL7KdWEt7g0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL7KdWEum1Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL7KdWEv3Yk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL7KdWEwzHc=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 216, + "top": 804, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL7KdWExRWs=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 216, + "top": 804, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL7KdWEyL0Q=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -216, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 876, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL7KdWEwzHc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL7KdWExRWs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqKErXxgY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL7KdWEyL0Q=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+LCGFgCjw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+LCGFhp5w=", + "_parent": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 347, + "top": 634, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+LCGFihK4=", + "_parent": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 347, + "top": 619, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+LCGFjcmE=", + "_parent": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 347, + "top": 664, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwK/k1ly1mNU=" + }, + "tail": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "points": "314:655;380:655", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+LCGFhp5w=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+LCGFihK4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+LCGFjcmE=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+O8GFxUF4=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+O8GFyCzY=", + "_parent": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 677, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+O8GFzT+A=", + "_parent": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 692, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+O8GF0qhg=", + "_parent": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 647, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "points": "236:668;163:668", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+O8GFyCzY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+O8GFzT+A=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+O8GF0qhg=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+SkWGC/a4=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+SkWGDbeA=", + "_parent": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 731, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+SkWGEkxM=", + "_parent": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 746, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+SkWGFVnU=", + "_parent": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 701, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "points": "236:722;163:722", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+SkWGDbeA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+SkWGEkxM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+SkWGFVnU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+WL2GTesQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+WL2GUDZ4=", + "_parent": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 797, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+WL2GVfH8=", + "_parent": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 812, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+WL2GW4Ys=", + "_parent": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 767, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "points": "236:788;163:788", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+WL2GUDZ4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+WL2GVfH8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+WL2GW4Ys=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+Z72GkT5Y=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+Z72GllyU=", + "_parent": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 854, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+Z72Gm6K8=", + "_parent": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 869, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+Z72GnawI=", + "_parent": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 824, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "points": "236:845;163:845", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+Z72GllyU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+Z72Gm6K8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+Z72GnawI=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+eh2G1gXM=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+eh2G2oXg=", + "_parent": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 910, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+eh2G3GpE=", + "_parent": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 925, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+eh2G4woY=", + "_parent": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 880, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "points": "236:901;163:901", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+eh2G2oXg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+eh2G3GpE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+eh2G4woY=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwMFq1GHZe+E=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMFq1GHa5CM=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "model": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHbxIU=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 561, + "top": 33, + "width": 93, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHc3zA=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 561, + "top": 47, + "width": 93, + "height": 12, + "text": "UMLAbstraction" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHdTFI=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHeicg=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 28, + "width": 103, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMFq1GHbxIU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMFq1GHc3zA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMFq1GHdTFI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMFq1GHeicg=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 28, + "width": 103, + "height": 153, + "nameCompartment": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMGle2H29zI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqKksmed8=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMGle2H3I+8=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H4B8s=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 29, + "width": 110.396484375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H5FWo=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 745, + "top": 43, + "width": 110.396484375, + "height": 12, + "text": "Derive" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H6wQw=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H7ifs=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 24, + "width": 120.396484375, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMGle2H4B8s=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMGle2H5FWo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMGle2H6wQw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMGle2H7ifs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMGle2H8ZWU=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFFwMJPAWJ40Vg=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H8ZWU=" + }, + "model": { + "$ref": "AAAAAAFFwMJO92J1Y/s=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 65, + "width": 110.396484375, + "height": 12, + "text": "+computation: String", + "horizontalAlignment": 0 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 60, + "width": 127.16787719726562, + "height": 22 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMGle2H9VL8=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 824, + "top": 60, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMGle2H+hpQ=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 24, + "width": 120.396484375, + "height": 58, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMGle2H8ZWU=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMGle2H9VL8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqKksmed8=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMGle2H+hpQ=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMGo6mIepMc=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqK0s9CwU=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMGo6mIfS5g=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIgcys=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 101, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIha40=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 745, + "top": 115, + "width": 69.380859375, + "height": 12, + "text": "Refine" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIiGvE=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 276, + "top": 120, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIjVCs=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 276, + "top": 120, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 96, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMGo6mIgcys=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMGo6mIha40=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMGo6mIiGvE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMGo6mIjVCs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMGo6mIkY0Y=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 832, + "top": 172, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMGo6mIlYhc=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 832, + "top": 172, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMGo6mImbZE=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 184, + "top": 80, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 96, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMGo6mIkY0Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMGo6mIlYhc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqK0s9CwU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMGo6mImbZE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMGrimJGJ0s=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqK0tTuyw=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMGrimJHZ7Y=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJIfxU=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 153, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJJ7uc=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 745, + "top": 167, + "width": 69.380859375, + "height": 12, + "text": "Trace" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJKI9M=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 324, + "top": 168, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJL3ag=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 324, + "top": 168, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 148, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMGrimJIfxU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMGrimJJ7uc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMGrimJKI9M=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMGrimJL3ag=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMGrimJMCIQ=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 848, + "top": 240, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMGrimJNPbE=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 848, + "top": 240, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMGrimJOkXc=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 216, + "top": 112, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 148, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMGrimJMCIQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMGrimJNPbE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqK0tTuyw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMGrimJOkXc=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMLTm2KEAI0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLTm2KFRRg=", + "_parent": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 61, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLTm2KGrkQ=", + "_parent": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 76, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLTm2KHZTE=", + "_parent": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 699, + "top": 31, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "tail": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "points": "740:52;658:52", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMLTm2KFRRg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMLTm2KGrkQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMLTm2KHZTE=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMLXQmKVDuM=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLXQmKW+3c=", + "_parent": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 121, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLXQmKXpUQ=", + "_parent": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 136, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLXQmKYWOg=", + "_parent": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 699, + "top": 91, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "tail": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "points": "740:112;658:112", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMLXQmKW+3c=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMLXQmKXpUQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMLXQmKYWOg=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMLbmmKmAvI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLbmmKnMuM=", + "_parent": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 169, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLbmmKonTw=", + "_parent": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 184, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLbmmKpbLQ=", + "_parent": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 699, + "top": 139, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "tail": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "points": "740:160;658:160", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMLbmmKnMuM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMLbmmKonTw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMLbmmKpbLQ=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwMYNEWK8jeA=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMYNEWK9Wb8=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK8jeA=" + }, + "model": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWK++fU=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 561, + "top": 833, + "width": 91, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWK/PY8=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 561, + "top": 847, + "width": 91, + "height": 12, + "text": "UMLPackage" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWLAHjA=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWLBm9I=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 828, + "width": 101, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMYNEWK++fU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMYNEWK/PY8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMYNEWLAHjA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMYNEWLBm9I=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 828, + "width": 101, + "height": 101, + "nameCompartment": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMdnrWLZAY8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqLUuNRhM=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMdnrWLaXkY=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLbib0=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 729, + "top": 837, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLclU4=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 729, + "top": 851, + "width": 72.51593017578125, + "height": 12, + "text": "Framework" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLdBNU=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLeF4I=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 832, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMdnrmLbib0=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMdnrmLclU4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMdnrmLdBNU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMdnrmLeF4I=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMdnrmLf950=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 868, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMdnrmLgzek=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 878, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMdnrmLhmpQ=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 832, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMdnrmLf950=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMdnrmLgzek=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqLUuNRhM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMdnrmLhmpQ=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMeIHGMCTCk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqLUujT3E=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMeIHGMDiPY=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMEN4g=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 729, + "top": 893, + "width": 75.345703125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMFxQc=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 729, + "top": 907, + "width": 75.345703125, + "height": 12, + "text": "ModelLibrary" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMG6CQ=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -60, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMH2dQ=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -60, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 888, + "width": 85.345703125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMeIHGMEN4g=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMeIHGMFxQc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMeIHGMG6CQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMeIHGMH2dQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMeIHGMI7hI=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 904, + "width": 85, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMeIHGMJi90=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 914, + "width": 85, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMeIHGMK1pc=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -40, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 888, + "width": 85.345703125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMeIHGMI7hI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMeIHGMJi90=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqLUujT3E=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMeIHGMK1pc=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMevo2Mq4Ew=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMevo2Mr7wQ=", + "_parent": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 861, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMevo2Msv/w=", + "_parent": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 876, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMevo2MtL5c=", + "_parent": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 690, + "top": 831, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMYNEWK8jeA=" + }, + "tail": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "points": "724:852;656:852", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMevo2Mr7wQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMevo2Msv/w=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMevo2MtL5c=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMe0G2M7rmg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMe0G2M8gls=", + "_parent": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 917, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMe0G2M9WEg=", + "_parent": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 932, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMe0G2M+CD8=", + "_parent": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 690, + "top": 887, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMYNEWK8jeA=" + }, + "tail": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "points": "724:908;656:908", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMe0G2M8gls=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMe0G2M9WEg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMe0G2M+CD8=" + } + } + ] + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFElnFrT1S7Kic=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLClassifier" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFElnF1nFTY/Sw=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Realization", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFElnGGLFUFZFA=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "source": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "target": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFElnF1nFTZHOU=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFElnJRglVKSoc=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Specification", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFElnKVuVV4pBU=", + "_parent": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "source": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "target": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFElnJRglVLifA=", + "_parent": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFJsYgDTM+Z6E=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "entity", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFJsZx3DOCac8=", + "_parent": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "source": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFJsYgDTM/qY8=", + "_parent": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "width": 40, + "height": 40, + "content": "var w = rect.getWidth(),\n m = w / 10;\ncanvas.fillEllipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.ellipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.line(rect.x1 + m, rect.y2 - m, rect.x2 - m, rect.y2 - m);\n" + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFJsZbpDNobIs=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLClass" + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwKqhJFq06mA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLArtifact" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKsvdVrRJUQ=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "File", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK5AeFyZpVg=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "source": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "isAbstract": true, + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKsvdVrSLo0=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKtwS1r6wew=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Document", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKzkslvX4gU=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "source": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK4k1VxEEpM=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "source": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKtwS1r7XqE=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKuBulsidLQ=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Executable", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKzsCVvo11g=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK4o4VxVx00=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKuBulsjhp0=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKuIMltKnQQ=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Library", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKzxcVv56Dg=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK4tiVxmVJM=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKuIMltLkmg=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKuS0ltysPk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Script", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKz3OVwK9hs=", + "_parent": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "source": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK41YVx3Hr0=", + "_parent": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "source": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKuS0ltz9pw=", + "_parent": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKueMVuaLXM=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Source", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKz9mFwbfDg=", + "_parent": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "source": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK47MFyIL/c=", + "_parent": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "source": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKueMlubedY=", + "_parent": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwK/k1ly00Ec=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLBehavioralFeature" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLBdO1zQosE=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Destroy", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLDMaFz5C14=", + "_parent": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "source": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "target": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLBdO1zR7Ak=", + "_parent": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLFUbV0QQVA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Auxiliary", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNej157D6Y=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "source": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLFUbV0RoPU=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLFu8104he4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Focus", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNkZ16Mp7Y=", + "_parent": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "source": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLFu9F05JGE=", + "_parent": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLF4tF1g4No=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Metaclass", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNn916d4Yc=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "source": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLF4tF1h94I=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLF/G12IJ54=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "ImplementationClass", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNr116u93k=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "source": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLF/G12JIns=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLGEO12wqJ8=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Type", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNvdl6/WJI=", + "_parent": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "source": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLGEPF2x7bg=", + "_parent": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLGI813YL3s=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Utility", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLN0fl7QL9o=", + "_parent": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "source": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLGI813ZPxY=", + "_parent": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLProfileDiagram", + "_id": "AAAAAAFFwLKxU14QPaE=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Robustness Stereotypes", + "ownedViews": [ + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLL0NF4VWXk=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqMEwRREE=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLL0NF4WzoE=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4X88I=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 217, + "top": 89, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4YSt8=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 217, + "top": 103, + "width": 72.51593017578125, + "height": 12, + "text": "entity" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4ZQaQ=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -1065, + "top": -270, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4asxs=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -1065, + "top": -270, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 84, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLL0NF4X88I=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLL0NF4YSt8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLL0NF4ZQaQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLL0NF4asxs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLL0NF4bgXg=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 92, + "top": -28, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLL0NF4cZ88=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 92, + "top": -18, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLL0NF4dJaE=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -710, + "top": -180, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 84, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLL0NF4bgXg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLL0NF4cZ88=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqMEwRREE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLL0NF4dJaE=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwLMO8l44tWU=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLMO8l45ook=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l46Nac=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 33, + "top": 33, + "width": 79, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l47xu4=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 33, + "top": 47, + "width": 79, + "height": 12, + "text": "UMLClass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l48V+s=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -489, + "top": -414, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l490+g=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -489, + "top": -414, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 28, + "top": 28, + "width": 89, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLMO8l46Nac=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLMO8l47xu4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLMO8l48V+s=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLMO8l490+g=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 28, + "top": 28, + "width": 89, + "height": 149, + "nameCompartment": { + "$ref": "AAAAAAFFwLMO8l45ook=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLMO814+17w=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLMO814/vLk=", + "_parent": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 109, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLMO815A2sw=", + "_parent": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 124, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLMO815BAcU=", + "_parent": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 164, + "top": 79, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "tail": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "points": "212:100;116:100", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLMO814/vLk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLMO815A2sw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLMO815BAcU=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwx8Q/35wG9A=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqMUw9MBk=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwx8Q/35xpyY=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/35yVU8=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 217, + "top": 37, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/35z0VE=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 217, + "top": 51, + "width": 72.51593017578125, + "height": 12, + "text": "control" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/3506PU=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -336, + "top": -312, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/351cP0=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -336, + "top": -312, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 32, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwx8Q/35yVU8=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwx8Q/35z0VE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwx8Q/3506PU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwx8Q/351cP0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwx8RAH52xko=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 76, + "top": -4, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwx8RAH53MWs=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 76, + "top": 6, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwx8RAH54kik=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -224, + "top": -208, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 32, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwx8RAH52xko=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwx8RAH53MWs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqMUw9MBk=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwx8RAH54kik=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwyAHeH6a9yk=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwyAHeX6b9JY=", + "_parent": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 61, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwyAHeX6cKyY=", + "_parent": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 76, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwyAHeX6dvIk=", + "_parent": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 164, + "top": 31, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "tail": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "points": "212:52;116:52", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwyAHeX6b9JY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwyAHeX6cKyY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwyAHeX6dvIk=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFw0h1/QXNqo4=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqMkxa+TA=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFw0h1/gXOBI4=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXPA/w=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 217, + "top": 141, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXQ/LI=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 217, + "top": 155, + "width": 72.51593017578125, + "height": 12, + "text": "boundary" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXRrB4=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -360, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXSVgA=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -360, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 136, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFw0h1/gXPA/w=" + }, + "nameLabel": { + "$ref": "AAAAAAFFw0h1/gXQ/LI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFw0h1/gXRrB4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFw0h1/gXSVgA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFw0h1/gXTCRY=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -20, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFw0h1/gXUu1g=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -10, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFw0h1/gXVEL8=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 64, + "top": -240, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 136, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFw0h1/gXTCRY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFw0h1/gXUu1g=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqMkxa+TA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFw0h1/gXVEL8=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFw0o5p5IVMGM=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFw0o5p5IW5Js=", + "_parent": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 165, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFw0o5p5IXSKA=", + "_parent": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 180, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFw0o5p5IY/GE=", + "_parent": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 164, + "top": 135, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "tail": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "points": "212:156;116:156", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFw0o5p5IW5Js=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFw0o5p5IXSKA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFw0o5p5IY/GE=" + } + } + ] + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwLRECl7r1R4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLComponent" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLR8CF8G68k=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Entity", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLV9gV/Xhk4=", + "_parent": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "source": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLR8CF8HOik=", + "_parent": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSByF8umMo=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Implementation", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWA0V/olVk=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "source": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSByF8vzKA=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSIN19WMnE=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Process", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWEUV/5Qq4=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "source": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSIN19XVng=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSO/19+cMY=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Service", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWIQWAKKPo=", + "_parent": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "source": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSO/19/YUk=", + "_parent": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSXP1+mTVk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Subsystem", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWMgWAb2Sk=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "source": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSXP1+njeI=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwL2WeGA460g=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLDependency" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL4D0mBXwu4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Create", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+LCGFfPQs=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "source": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "target": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+O8GFwbog=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "source": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL4D0mBYXVU=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL4h4WCAEkg=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Call", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+SkWGBCOg=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "source": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL4h4WCBKPU=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL45WWCpJ0o=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Instantiate", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+WL2GScgY=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "source": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL45WWCq/8I=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL5hP2DSEFk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Responsibility", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+Z72GjzGw=", + "_parent": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "source": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL5hQGDTCjI=", + "_parent": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL7KdWEoDhA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Send", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+eh2G01aU=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "source": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL7KdWEpx8M=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwMFq1GHYSKM=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLAbstraction" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMGlemH0Tq8=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Derive", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMLTmmKDF1M=", + "_parent": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "source": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "target": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + } + } + ], + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFFwMJO92J1Y/s=", + "_parent": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "name": "computation", + "type": "String" + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMGlemH1M8k=", + "_parent": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMGo6mIcITc=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Refine", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMLXQmKUyu0=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "source": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "target": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMGo6mIdBMU=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMGrimJEvvk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Trace", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMLbmmKloGE=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "source": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "target": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMGrimJF+z8=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwMYNEWK7ItA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLPackage" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMdnrWLXWLA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Framework", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMevo2MpIU4=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "source": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "target": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMdnrWLYFcM=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMeIHGMAPDc=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "ModelLibrary", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMe0G2M69PQ=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "source": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "target": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMeIHGMBKKk=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLProfileDiagram", + "_id": "AAAAAAFFwQCuI7bLjDk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "StandardProfileL3", + "ownedViews": [ + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwQHC9rbwK6A=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQHC9rbx7Lo=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbwK6A=" + }, + "model": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rbyTUQ=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 45, + "top": 121, + "width": 107, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rbzlgQ=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 45, + "top": 135, + "width": 107, + "height": 12, + "text": "UMLModel" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rb0L9g=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -168, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rb1XIk=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -168, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 116, + "width": 117, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQHC9rbyTUQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQHC9rbzlgQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQHC9rb0L9g=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQHC9rb1XIk=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 116, + "width": 117, + "height": 97, + "nameCompartment": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwQHjjbcLQPM=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqN0zJrS0=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQHjjbcMlRY=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcNrIk=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 229, + "top": 41, + "width": 115, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcOnWs=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 229, + "top": 55, + "width": 115, + "height": 12, + "text": "BuildComponent" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcPLIM=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -48, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcQOtc=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -48, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 36, + "width": 125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQHjjbcNrIk=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQHjjbcOnWs=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQHjjbcPLIM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQHjjbcQOtc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwQHjjrcRsYI=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 56, + "width": 105, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwQHjjrcSCoc=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 66, + "width": 105, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwQHjjrcTWEY=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 36, + "width": 125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwQHjjrcRsYI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwQHjjrcSCoc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqN0zJrS0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwQHjjrcTWEY=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwQIPLLc0Q7M=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqOEzfvr8=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQIPLLc1jrg=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc2rps=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 229, + "top": 121, + "width": 83, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc3wdo=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 229, + "top": 135, + "width": 83, + "height": 12, + "text": "Metamodel" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc4SHA=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -84, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc5Qvc=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -84, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 116, + "width": 93, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQIPLLc2rps=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQIPLLc3wdo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQIPLLc4SHA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQIPLLc5Qvc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwQIPLLc63qc=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 124, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwQIPLbc7y2w=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 134, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwQIPLbc8jC8=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -56, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 116, + "width": 93, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwQIPLLc63qc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwQIPLbc7y2w=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqOEzfvr8=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwQIPLbc8jC8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwQIrDLddK/I=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqOEz1SWk=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQIrDLdevJE=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdfcec=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 229, + "top": 181, + "width": 83, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdgsTM=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 229, + "top": 195, + "width": 83, + "height": 12, + "text": "SystemModel" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdhAR0=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": -168, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdiiuQ=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": -168, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 176, + "width": 93, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQIrDLdfcec=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQIrDLdgsTM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQIrDLdhAR0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQIrDLdiiuQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwQIrDLdjYt8=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 264, + "top": 156, + "width": 88, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwQIrDLdkEoo=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 264, + "top": 166, + "width": 88, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwQIrDLdlkbo=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 80, + "top": -112, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 176, + "width": 93, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwQIrDLdjYt8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwQIrDLdkEoo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqOEz1SWk=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwQIrDLdlkbo=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwQLOH7eRZzI=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLOH7eSzo8=", + "_parent": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 145, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLOILeTl4U=", + "_parent": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 160, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLOILeU1qE=", + "_parent": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 190, + "top": 115, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwQHC9rbwK6A=" + }, + "tail": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "points": "224:136;156:136", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwQLOH7eSzo8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQLOILeTl4U=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQLOILeU1qE=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwQLSp7eim6s=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLSp7ejdqM=", + "_parent": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 205, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLSp7ekT+I=", + "_parent": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 220, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLSp7el67w=", + "_parent": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 190, + "top": 175, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwQHC9rbwK6A=" + }, + "tail": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "points": "224:196;156:196", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwQLSp7ejdqM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQLSp7ekT+I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQLSp7el67w=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwQdYRLfPnZs=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQdYRLfQc8o=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfPnZs=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfRm/U=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 45, + "top": 41, + "width": 107, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfSwyU=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 45, + "top": 55, + "width": 107, + "height": 12, + "text": "UMLComponent" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfTyV4=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -702, + "top": -954, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfUafY=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -702, + "top": -954, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 36, + "width": 117, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQdYRLfRm/U=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQdYRLfSwyU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQdYRLfTyV4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQdYRLfUafY=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 36, + "width": 117, + "height": 41, + "nameCompartment": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwQgwnLf7u0w=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQgwnLf82nE=", + "_parent": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 64, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQgwnbf9bFo=", + "_parent": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 79, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQgwnbf+ckE=", + "_parent": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 190, + "top": 34, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwQdYRLfPnZs=" + }, + "tail": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "lineStyle": 1, + "points": "223:55;157:55", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwQgwnLf82nE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQgwnbf9bFo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQgwnbf+ckE=" + } + } + ] + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwQHC9rbvUkk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLModel" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwQHjjbcJ4Ks=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "BuildComponent", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwQgwnLf6Q+0=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "source": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwQHjjbcKYjk=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwQIPLLcykEY=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Metamodel", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwQLOH7eQuvE=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "source": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "target": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwQIPLLcz/1A=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwQIrDLdbTko=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "SystemModel", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwQLSp7eh5o0=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "source": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "target": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwQIrDLdcjKw=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwx8Q/35u/80=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "control", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwyAHeH6Znas=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "source": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwx8Q/35vMf0=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "width": 40, + "height": 40, + "content": "var w = rect.getWidth(),\n h = w / 2,\n m = w / 8;\ncanvas.fillEllipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.ellipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.line(rect.x1 + h, rect.y1 + m, rect.x1 + h + m, rect.y1);\ncanvas.line(rect.x1 + h, rect.y1 + m, rect.x1 + h + m, rect.y1 + 2 * m);\n" + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFw0h1/QXL978=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "boundary", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFw0o5ppIUB2s=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "source": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFw0h1/QXM/ss=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "width": "50", + "height": 40, + "content": "var w = rect.getWidth(),\n h = rect.getHeight(),\n m = w / 5;\ncanvas.fillEllipse(rect.x1 + m, rect.y1, rect.x2, rect.y2);\ncanvas.ellipse(rect.x1 + m, rect.y1, rect.x2, rect.y2);\ncanvas.line(rect.x1, rect.y1, rect.x1, rect.y2);\ncanvas.line(rect.x1, rect.y1 + h/2, rect.x1 + m, rect.y1 + h/2);\n" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/doc/状态机.mdj b/app/doc/状态机.mdj new file mode 100644 index 0000000..5f1212f --- /dev/null +++ b/app/doc/状态机.mdj @@ -0,0 +1,45155 @@ +{ + "_type": "Project", + "_id": "AAAAAAFElm5XMFNoGY0=", + "name": "Untitled", + "ownedElements": [ + { + "_type": "UMLModel", + "_id": "AAAAAAFElm6BOFNpegQ=", + "_parent": { + "$ref": "AAAAAAFElm5XMFNoGY0=" + }, + "name": "Model", + "ownedElements": [ + { + "_type": "UMLUseCaseDiagram", + "_id": "AAAAAAF5P5m6Qk1jVXQ=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "UseCaseDiagram1", + "ownedViews": [ + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P5nMr01oLTI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P5nMr01pxLs=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01qZlQ=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4528, + "top": 672, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01rWkA=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "font": "Arial;13;1", + "left": 2284, + "top": 347.5, + "width": 62, + "height": 13, + "text": "check2C" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01srVY=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4528, + "top": 672, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5nMr01tKAI=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 4528, + "top": 672, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 2279, + "top": 340.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5nMr01qZlQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P5nMr01rWkA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P5nMr01srVY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5nMr01tKAI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P5nMr01u10s=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2264, + "top": 336, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P5nMr01vn/8=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2264, + "top": 336, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5nMr01wvTc=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2264, + "top": 336, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P5nMr01xNvU=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2264, + "top": 336, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P5nMr01yEgM=", + "_parent": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "model": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2264, + "top": 336, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 2264, + "top": 336, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P5nMr01pxLs=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P5nMr01u10s=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P5nMr01vn/8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5nMr01wvTc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P5nMr01xNvU=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P5nMr01yEgM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P5saWE3J2FY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3K1ts=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "font": "Arial;13;0", + "left": 2186, + "top": 446, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 1, + "text": "+通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3LIi0=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2224, + "top": 458, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3M7xA=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2196, + "top": 423, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3NmNI=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2281, + "top": 393, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3Oy1k=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2287, + "top": 404, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3PZiY=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2267, + "top": 368, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3QKR0=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2149, + "top": 500, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3RVpc=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2159, + "top": 509, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5saWE3S3i0=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2128, + "top": 481, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5saWE3TepE=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03GReQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2152, + "top": 160, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5saWE3U3g4=", + "_parent": { + "$ref": "AAAAAAF5P5saWE3J2FY=" + }, + "model": { + "$ref": "AAAAAAF5P5saV03HrLQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2152, + "top": 160, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "tail": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "lineStyle": 1, + "points": "2292:371;2120:511", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P5saWE3K1ts=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5saWE3LIi0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5saWE3M7xA=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P5saWE3NmNI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P5saWE3Oy1k=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P5saWE3PZiY=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P5saWE3QKR0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P5saWE3RVpc=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P5saWE3S3i0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P5saWE3TepE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P5saWE3U3g4=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P56LZE6M/G8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P56LZE6NeNY=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6OE2I=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -464, + "top": -224, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6PKW0=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 205, + "top": 283.5, + "width": 103, + "height": 13, + "text": "【用户选择操作】" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6QSXM=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -464, + "top": -224, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P56LZE6RMmU=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -464, + "top": -224, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 200, + "top": 276.5, + "width": 114, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P56LZE6OE2I=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P56LZE6PKW0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P56LZE6QSXM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P56LZE6RMmU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P56LZE6SLIg=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P56LZE6TWFg=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P56LZE6U8ts=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P56LZE6VNIk=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P56LZE6W1sE=", + "_parent": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "model": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -232, + "top": -112, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 176, + "top": 272, + "width": 161, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P56LZE6NeNY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P56LZE6SLIg=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P56LZE6TWFg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P56LZE6U8ts=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P56LZE6VNIk=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P56LZE6W1sE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P56tgE7IY7E=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7JO9U=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "font": "Arial;13;0", + "left": 1216, + "top": 36, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7Kkjk=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1252, + "top": 51, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7LlPE=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1251, + "top": 7, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7MSF4=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2273, + "top": 317, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7NsLs=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2261, + "top": 323, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7OBww=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2298, + "top": 304, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7PoMY=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 296, + "top": 253, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7Q0NM=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 308, + "top": 259, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P56tgE7RtW8=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 271, + "top": 240, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P56tgE7SCeE=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7F7Yk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P56tgE7TSmw=", + "_parent": { + "$ref": "AAAAAAF5P56tgE7IY7E=" + }, + "model": { + "$ref": "AAAAAAF5P56tgE7GNNA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "tail": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "lineStyle": 1, + "points": "2301:335;2064:16;440:40;269:271", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P56tgE7JO9U=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P56tgE7Kkjk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P56tgE7LlPE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P56tgE7MSF4=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P56tgE7NsLs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P56tgE7OBww=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P56tgE7PoMY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P56tgE7Q0NM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P56tgE7RtW8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P56tgE7SCeE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P56tgE7TSmw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P5/CAk98zZc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P5/CAk99r9g=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA09+uJY=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1056, + "top": -208, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA09/h4M=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "font": "Arial;13;1", + "left": 1260, + "top": 395.5, + "width": 62, + "height": 13, + "text": "Idle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA0+AvMQ=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1056, + "top": -208, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P5/CA0+BODA=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1056, + "top": -208, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1255, + "top": 388.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5/CA09+uJY=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P5/CA09/h4M=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P5/CA0+AvMQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5/CA0+BODA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P5/CA0+CFD4=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -104, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P5/CA0+DO7Q=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -104, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5/CA0+EZ7w=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -104, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P5/CA0+FMSM=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -104, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P5/CA0+GOcA=", + "_parent": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "model": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -104, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1240, + "top": 384, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P5/CAk99r9g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P5/CA0+CFD4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P5/CA0+DO7Q=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5/CA0+EZ7w=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P5/CA0+FMSM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P5/CA0+GOcA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P5/ask/ENuY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/FCi8=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "font": "Arial;13;0", + "left": 514, + "top": 360, + "width": 124.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 1, + "text": "+选择忽略or重测目标" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/GmBY=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 580, + "top": 346, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/H9Os=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 567, + "top": 389, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/ITgo=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 347, + "top": 293, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/J3dw=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 353, + "top": 281, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/KH+Q=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 335, + "top": 319, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/LwxI=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 806, + "top": 427, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/MCSM=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 807, + "top": 413, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P5/ask/N7rw=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 802, + "top": 454, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5/ask/OUQY=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/BASE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P5/ask/P3tM=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ENuY=" + }, + "model": { + "$ref": "AAAAAAF5P5/ask/CwwU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "lineStyle": 1, + "points": "318:307;827:455", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P5/ask/FCi8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P5/ask/GmBY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P5/ask/H9Os=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P5/ask/ITgo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P5/ask/J3dw=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P5/ask/KH+Q=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P5/ask/LwxI=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P5/ask/MCSM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P5/ask/N7rw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P5/ask/OUQY=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P5/ask/P3tM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P6Btl1DS04s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P6Btl1DTuQ4=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P6Btl1DUbE8=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -1072, + "top": 160, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6BtmFDVnHI=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 74.5, + "top": 411.5, + "width": 207, + "height": 13, + "text": "【提示用户是否确定删除整个测回】" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6BtmFDW1Rc=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -1072, + "top": 160, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6BtmFDXJZ4=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -1072, + "top": 160, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 69.5, + "top": 404.5, + "width": 218, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6Btl1DUbE8=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P6BtmFDVnHI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P6BtmFDW1Rc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6BtmFDXJZ4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P6BtmFDYzoo=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P6BtmFDZfOA=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P6BtmFDabNE=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P6BtmFDbcVg=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P6BtmFDcrag=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "model": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -536, + "top": 80, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 24, + "top": 400, + "width": 308, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P6Btl1DTuQ4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P6BtmFDYzoo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P6BtmFDZfOA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P6BtmFDabNE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P6BtmFDbcVg=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P6BtmFDcrag=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6ETu1Fw08c=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFFx1mw=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "font": "Arial;13;0", + "left": 199, + "top": 354, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 1, + "text": "+重测测回" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFFyw0s=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 241, + "top": 362, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFFzyRs=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 203, + "top": 339, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF0+lY=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 244, + "top": 330, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF1ok8=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 254, + "top": 339, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF2wKI=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 222, + "top": 312, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF3tbw=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 214, + "top": 378, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF4Oc0=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 226, + "top": 383, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6ETvFF586k=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 188, + "top": 368, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6ETvFF6xek=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1FtUvs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6ETvFF7szs=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fw08c=" + }, + "model": { + "$ref": "AAAAAAF5P6ETu1Fuzfc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "tail": { + "$ref": "AAAAAAF5P56LZE6M/G8=" + }, + "lineStyle": 1, + "points": "245:307;188:399", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6ETvFFx1mw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6ETvFFyw0s=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6ETvFFzyRs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6ETvFF0+lY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6ETvFF1ok8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6ETvFF2wKI=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6ETvFF3tbw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6ETvFF4Oc0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6ETvFF586k=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6ETvFF6xek=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6ETvFF7szs=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6HZl1JC23Y=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JDZsQ=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "font": "Arial;13;0", + "left": 509, + "top": 426, + "width": 98.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 1, + "text": "+选择忽略or取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JECIw=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 559, + "top": 411, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JF8pk=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 555, + "top": 455, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JG0HA=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 359, + "top": 410, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JHztQ=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 362, + "top": 397, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JIPD0=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 352, + "top": 437, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JJLUs=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 758, + "top": 441, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JKFgU=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 757, + "top": 428, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6HZl1JLM+Y=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 760, + "top": 469, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6HZl1JMru0=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1I/u/s=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6HZl1JNqZA=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1JC23Y=" + }, + "model": { + "$ref": "AAAAAAF5P6HZl1JAt1Q=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "lineStyle": 1, + "points": "332:429;783:465", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6HZl1JDZsQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6HZl1JECIw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6HZl1JF8pk=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6HZl1JG0HA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6HZl1JHztQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6HZl1JIPD0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6HZl1JJLUs=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6HZl1JKFgU=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6HZl1JLM+Y=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6HZl1JMru0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6HZl1JNqZA=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5P6IYDFMMeFQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5P6IYDFMNnzQ=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDFMOOjk=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -1536, + "top": 544, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDVMPgvc=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 125, + "top": 531.5, + "width": 103, + "height": 13, + "text": "【执行删除操作】" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDVMQezU=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -1536, + "top": 544, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5P6IYDVMRBdM=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -1536, + "top": 544, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 120, + "top": 524.5, + "width": 114, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6IYDFMOOjk=" + }, + "nameLabel": { + "$ref": "AAAAAAF5P6IYDVMPgvc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5P6IYDVMQezU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6IYDVMRBdM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5P6IYDVMSZQE=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5P6IYDVMTe6E=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P6IYDVMUviY=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5P6IYDVMVT7Q=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5P6IYDVMWeEE=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "model": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": -768, + "top": 272, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 96, + "top": 520, + "width": 161, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5P6IYDFMNnzQ=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5P6IYDVMSZQE=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5P6IYDVMTe6E=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P6IYDVMUviY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5P6IYDVMVT7Q=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5P6IYDVMWeEE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6Jc6FQAXTQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6FQBsAA=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "font": "Arial;13;0", + "left": 161, + "top": 470, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 1, + "text": "+确认删除" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6FQCliU=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 205, + "top": 470, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6FQDs0Y=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 161, + "top": 471, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQErUI=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 191, + "top": 455, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQFXc4=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 204, + "top": 457, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQGACw=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 164, + "top": 450, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQH5rw=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 191, + "top": 487, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQIDDY=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 204, + "top": 485, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6Jc6VQJXs0=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 163, + "top": 491, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6Jc6VQKiwE=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP9Ay0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6Jc6VQLymI=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FQAXTQ=" + }, + "model": { + "$ref": "AAAAAAF5P6Jc6FP+W/w=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "tail": { + "$ref": "AAAAAAF5P6Btl1DS04s=" + }, + "lineStyle": 1, + "points": "177:435;176:519", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6Jc6FQBsAA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6Jc6FQCliU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6Jc6FQDs0Y=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6Jc6VQErUI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6Jc6VQFXc4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6Jc6VQGACw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6Jc6VQH5rw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6Jc6VQIDDY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6Jc6VQJXs0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6Jc6VQKiwE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6Jc6VQLymI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5P6KuWFYy590=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFYzBrY=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 995, + "top": 977, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY07+U=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1002, + "top": 964, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY1T2M=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 980, + "top": 1004, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY2uTU=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 237, + "top": 548, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY3Q0s=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 246, + "top": 538, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY4NMQ=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 220, + "top": 570, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY5sZg=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1752, + "top": 1407, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY62Oo=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1757, + "top": 1394, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5P6KuWFY78L8=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1743, + "top": 1433, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5P6KuWFYy590=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6KuWFY8wFs=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYvXto=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 376, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5P6KuWVY9b40=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYy590=" + }, + "model": { + "$ref": "AAAAAAF5P6KuWFYwtmg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 376, + "top": -144, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5P6IYDFMMeFQ=" + }, + "lineStyle": 1, + "points": "208:555;1768:1439", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5P6KuWFYzBrY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5P6KuWFY07+U=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5P6KuWFY1T2M=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5P6KuWFY2uTU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5P6KuWFY3Q0s=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5P6KuWFY4NMQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5P6KuWFY5sZg=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5P6KuWFY62Oo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5P6KuWFY78L8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5P6KuWFY8wFs=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5P6KuWVY9b40=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJWvCwgzk0M=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJWvCwg0EPw=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg1NpM=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1920, + "top": 2944, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg2wKE=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "font": "Arial;13;1", + "left": 1752, + "top": 1875.5, + "width": 119, + "height": 13, + "text": "move2NextValidate" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg3lvo=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1920, + "top": 2944, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJWvCwg4tCw=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1920, + "top": 2944, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1747, + "top": 1868.5, + "width": 129, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJWvCwg1NpM=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJWvCwg2wKE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJWvCwg3lvo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJWvCwg4tCw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJWvCwg5PfY=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 960, + "top": 1472, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJWvDAg6ClE=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 960, + "top": 1472, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJWvDAg7Ros=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 960, + "top": 1472, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJWvDAg8tC0=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 960, + "top": 1472, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJWvDAg9Vl8=", + "_parent": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "model": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 960, + "top": 1472, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1720, + "top": 1864, + "width": 183, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJWvCwg0EPw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJWvCwg5PfY=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJWvDAg6ClE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJWvDAg7Ros=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJWvDAg8tC0=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJWvDAg9Vl8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJesYRAYGmw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYRAZQUY=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "font": "Arial;13;0", + "left": 1492, + "top": 300, + "width": 189.2279815673828, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 1, + "text": "+测站不闭合or半测回归零差正常" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYRAa+X8=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1589, + "top": 285, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYRAb41g=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1579, + "top": 329, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAcFHE=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1415, + "top": 260, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAdnH8=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1420, + "top": 247, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAeLA0=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1405, + "top": 286, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAfocQ=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1758, + "top": 340, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAgNDY=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1758, + "top": 327, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJesYhAh4Q4=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1756, + "top": 368, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJesYhAiBdg=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAV/Pw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJesYhAjzjQ=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAYGmw=" + }, + "model": { + "$ref": "AAAAAAF5QJesYRAWIno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 112, + "top": -144, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "tail": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "lineStyle": 1, + "points": "1387:275;1780:367", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJesYRAZQUY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJesYRAa+X8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJesYRAb41g=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJesYhAcFHE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJesYhAdnH8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJesYhAeLA0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJesYhAfocQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJesYhAgNDY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJesYhAh4Q4=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJesYhAiBdg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJesYhAjzjQ=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJjLZRML/gk=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJjLZRMMO54=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMN0eQ=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 784, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMOGnw=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 820, + "top": 467.5, + "width": 139, + "height": 13, + "text": "switchState2StandStill" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMPJsQ=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 784, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJjLZRMQZsw=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 784, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 815, + "top": 460.5, + "width": 149.419921875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJjLZRMN0eQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJjLZRMOGnw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJjLZRMPJsQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJjLZRMQZsw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJjLZRMRZxg=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJjLZRMSuGM=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJjLZRMTa74=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJjLZRMUk04=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 392, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJjLZRMVcTY=", + "_parent": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "model": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 392, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 784, + "top": 456, + "width": 211, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJjLZRMMO54=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJjLZRMRZxg=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJjLZRMSuGM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJjLZRMTa74=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJjLZRMUk04=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJjLZRMVcTY=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJk5ohVYjKI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJk5ohVZ7LA=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVaBvo=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1040, + "top": -608, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVbtSw=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 925, + "top": 267.5, + "width": 142, + "height": 13, + "text": "提示半测回归零检测失败" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVc1ns=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1040, + "top": -608, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJk5ohVdnqY=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1040, + "top": -608, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 920, + "top": 260.5, + "width": 153, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJk5ohVaBvo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJk5ohVbtSw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJk5ohVc1ns=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJk5ohVdnqY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJk5ohVeC3M=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 520, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJk5ohVfd1M=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 520, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJk5ohVg6Qc=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 520, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJk5ohVh4ZY=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 520, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJk5ohViitY=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "model": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 520, + "top": -304, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 888, + "top": 256, + "width": 216, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJk5ohVZ7LA=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJk5ohVeC3M=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJk5ohVfd1M=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJk5ohVg6Qc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJk5ohVh4ZY=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJk5ohViitY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJmQwBdwdmk=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwBdxb3k=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "font": "Arial;13;0", + "left": 1117, + "top": 272, + "width": 85.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 1, + "text": "+没有通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRdyFDg=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1160, + "top": 287, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRdzOi4=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1158, + "top": 243, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd0cxc=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1189, + "top": 272, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd1+jk=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1188, + "top": 285, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd2je8=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1192, + "top": 244, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd3aOM=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1130, + "top": 274, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd4cEI=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1133, + "top": 287, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJmQwRd5h7I=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1125, + "top": 247, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJmQwRd6XO0=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdt/Nk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJmQwRd7bPQ=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdwdmk=" + }, + "model": { + "$ref": "AAAAAAF5QJmQwBdu0wk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "tail": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "lineStyle": 1, + "points": "1215:262;1104:267", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJmQwBdxb3k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJmQwRdyFDg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJmQwRdzOi4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJmQwRd0cxc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJmQwRd1+jk=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJmQwRd2je8=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJmQwRd3aOM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJmQwRd4cEI=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJmQwRd5h7I=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJmQwRd6XO0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJmQwRd7bPQ=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJnHsRkO52k=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkPXt4=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 955, + "top": 373, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkQg5M=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 968, + "top": 380, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkRfd8=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 928, + "top": 360, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkS/7E=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 986, + "top": 314, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkTUvo=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 996, + "top": 323, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkU2kA=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 963, + "top": 298, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkVrbg=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 924, + "top": 432, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkWL5A=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 937, + "top": 437, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnHsRkXIlE=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 897, + "top": 424, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnHsRkYjF0=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkLdTo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnHsRkZRp4=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkO52k=" + }, + "model": { + "$ref": "AAAAAAF5QJnHsRkM5N4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5QJk5ohVYjKI=" + }, + "lineStyle": 1, + "points": "985:291;899:455", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJnHsRkPXt4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJnHsRkQg5M=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJnHsRkRfd8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJnHsRkS/7E=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJnHsRkTUvo=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJnHsRkU2kA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJnHsRkVrbg=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJnHsRkWL5A=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJnHsRkXIlE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJnHsRkYjF0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJnHsRkZRp4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJnk3hnngQ0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnoFuM=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1111, + "top": 411, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnpzsU=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1108, + "top": 396, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnqowI=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1116, + "top": 440, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnr2A8=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1011, + "top": 429, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnsPz4=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1011, + "top": 416, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnt7X0=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1012, + "top": 457, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnuPbw=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1210, + "top": 393, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnvOwA=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1206, + "top": 381, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJnk3hnwvuU=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1219, + "top": 420, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnk3hnxCbA=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnk4S8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJnk3hny8xs=", + "_parent": { + "$ref": "AAAAAAF5QJnk3hnngQ0=" + }, + "model": { + "$ref": "AAAAAAF5QJnk3Rnlvxc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "lineStyle": 1, + "points": "989:455;1239:410", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJnk3hnoFuM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJnk3hnpzsU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJnk3hnqowI=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJnk3hnr2A8=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJnk3hnsPz4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJnk3hnt7X0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJnk3hnuPbw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJnk3hnvOwA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJnk3hnwvuU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJnk3hnxCbA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJnk3hny8xs=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJ6ahiPXyXI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJ6ahiPYzM0=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahiPZdhA=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -544, + "top": -656, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahiPa2BQ=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "font": "Arial;13;1", + "left": 419.5, + "top": 243.5, + "width": 96, + "height": 13, + "text": "checkReadData" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahyPb1CY=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -544, + "top": -656, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ6ahyPcSJM=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -544, + "top": -656, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 414.5, + "top": 236.5, + "width": 106.8271484375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ6ahiPZdhA=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJ6ahiPa2BQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJ6ahyPb1CY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ6ahyPcSJM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJ6ahyPdwvQ=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -272, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJ6ahyPeius=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -272, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJ6ahyPfDuE=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -272, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJ6ahyPgVJE=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -272, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJ6ahyPhyOw=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "model": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -272, + "top": -328, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 392, + "top": 232, + "width": 151, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJ6ahiPYzM0=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJ6ahyPdwvQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJ6ahyPeius=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJ6ahyPfDuE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJ6ahyPgVJE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJ6ahyPhyOw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJ8m8Sf6ofY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJ8m8Sf7JBU=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf8/hc=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -1248, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf9x9A=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "font": "Arial;13;1", + "left": 1252, + "top": 123.5, + "width": 175, + "height": 13, + "text": "isHalfCycleZeroCheckReady" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf+ddw=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -1248, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ8m8Sf/cbI=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -1248, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1247, + "top": 116.5, + "width": 186.2998046875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ8m8Sf8/hc=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJ8m8Sf9x9A=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJ8m8Sf+ddw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ8m8Sf/cbI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJ8m8SgAs+Y=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -624, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJ8m8SgBoKU=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -624, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJ8m8SgCMgY=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -624, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJ8m8SgDeic=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -624, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJ8m8SgEIBM=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "model": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 752, + "top": -624, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1208, + "top": 112, + "width": 263, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJ8m8Sf7JBU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJ8m8SgAs+Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJ8m8SgBoKU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJ8m8SgCMgY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJ8m8SgDeic=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJ8m8SgEIBM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJ87PCkCJ2c=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkD2ew=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "font": "Arial;13;0", + "left": 817, + "top": 172, + "width": 111.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 1, + "text": "+单测量or通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkEHYk=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 870, + "top": 157, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkFD0M=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 877, + "top": 201, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkGBOM=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 566, + "top": 214, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkHciQ=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 567, + "top": 201, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkI53k=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 566, + "top": 242, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkJ5DY=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1180, + "top": 129, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkKd2s=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1176, + "top": 116, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ87PCkLnCE=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1188, + "top": 156, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ87PCkMizE=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87Oyj/TJQ=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ87PCkNuH0=", + "_parent": { + "$ref": "AAAAAAF5QJ87PCkCJ2c=" + }, + "model": { + "$ref": "AAAAAAF5QJ87OykA4RY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "tail": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "lineStyle": 1, + "points": "543:239;1208:147", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJ87PCkD2ew=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ87PCkEHYk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ87PCkFD0M=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJ87PCkGBOM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJ87PCkHciQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJ87PCkI53k=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJ87PCkJ5DY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJ87PCkKd2s=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJ87PCkLnCE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJ87PCkMizE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJ87PCkNuH0=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QJ+mRitZ0H0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QJ+mRitad0o=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRitbxtk=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 736, + "top": -560, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRytcRUc=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 687.5, + "top": 291.5, + "width": 77, + "height": 13, + "text": "提示读数有误" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRytdKoM=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 736, + "top": -560, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QJ+mRytecXk=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 736, + "top": -560, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 682.5, + "top": 284.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ+mRitbxtk=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QJ+mRytcRUc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QJ+mRytdKoM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ+mRytecXk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QJ+mRytf9wc=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 368, + "top": -280, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QJ+mRytgl/8=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 368, + "top": -280, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QJ+mRythGBg=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 368, + "top": -280, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QJ+mRytiPDo=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 368, + "top": -280, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QJ+mRytjdZM=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "model": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 368, + "top": -280, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 664, + "top": 280, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QJ+mRitad0o=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QJ+mRytf9wc=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QJ+mRytgl/8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QJ+mRythGBg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QJ+mRytiPDo=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QJ+mRytjdZM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJ/UgywlH50=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/Ugywm6Cw=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "font": "Arial;13;0", + "left": 569, + "top": 253, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UgywnNpM=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 608, + "top": 238, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UgywoaZM=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 600, + "top": 282, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwpjOU=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 571, + "top": 246, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwqyBI=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 575, + "top": 234, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwrLDA=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 562, + "top": 273, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCws+Vw=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 640, + "top": 259, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwtL5c=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 640, + "top": 246, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/UhCwuYNo=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 639, + "top": 287, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/UhCwvaPk=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/Ugywiha4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/UhCwwUDY=", + "_parent": { + "$ref": "AAAAAAF5QJ/UgywlH50=" + }, + "model": { + "$ref": "AAAAAAF5QJ/UgywjRPE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "tail": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "lineStyle": 1, + "points": "543:263;663:285", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJ/Ugywm6Cw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ/UgywnNpM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ/UgywoaZM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJ/UhCwpjOU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJ/UhCwqyBI=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/UhCwrLDA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJ/UhCws+Vw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJ/UhCwtL5c=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/UhCwuYNo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/UhCwvaPk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/UhCwwUDY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QJ/0PC0CShY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0DtlQ=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 817, + "top": 368, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0ETCk=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 828, + "top": 358, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0FS9M=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 796, + "top": 389, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0G2RA=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 770, + "top": 317, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0HEgs=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 781, + "top": 310, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0IKu8=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 747, + "top": 333, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0JtjU=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 865, + "top": 419, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0KkBY=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 873, + "top": 409, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QJ/0PS0LEUU=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 848, + "top": 441, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/0PS0MAmo=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PCz/2CU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QJ/0PS0Nb0Y=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PC0CShY=" + }, + "model": { + "$ref": "AAAAAAF5QJ/0PC0AjHo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5QJ+mRitZ0H0=" + }, + "lineStyle": 1, + "points": "742:315;872:455", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QJ/0PS0DtlQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QJ/0PS0ETCk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QJ/0PS0FS9M=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QJ/0PS0G2RA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QJ/0PS0HEgs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/0PS0IKu8=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QJ/0PS0JtjU=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QJ/0PS0KkBY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QJ/0PS0LEUU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/0PS0MAmo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QJ/0PS0Nb0Y=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKE6Ojfzjv0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKE6Ojf0W9Y=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf12Ns=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3008, + "top": -336, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf2D5I=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "font": "Arial;13;1", + "left": 2110, + "top": 779.5, + "width": 110, + "height": 13, + "text": "checkSingleCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf3N+g=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3008, + "top": -336, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKE6Ojf4rrM=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 3008, + "top": -336, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 2105, + "top": 772.5, + "width": 120.55712890625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKE6Ojf12Ns=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKE6Ojf2D5I=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKE6Ojf3N+g=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKE6Ojf4rrM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKE6Ojf5X6A=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -168, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKE6Ojf6i5o=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -168, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKE6Ojf7hDo=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -168, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKE6Ojf8oq8=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -168, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKE6Ojf9edk=", + "_parent": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "model": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1504, + "top": -168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 2080, + "top": 768, + "width": 170, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKE6Ojf0W9Y=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKE6Ojf5X6A=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKE6Ojf6i5o=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKE6Ojf7hDo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKE6Ojf8oq8=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKE6Ojf9edk=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKIG+T9Y4ko=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKIG+T9Zl2o=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9a7vU=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2160, + "top": -1008, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9bDug=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "font": "Arial;13;1", + "left": 1762, + "top": 523.5, + "width": 129, + "height": 13, + "text": "isAllCycleCompleted" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9cIfM=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2160, + "top": -1008, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKIG+T9dArI=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2160, + "top": -1008, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1757, + "top": 516.5, + "width": 139.314453125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKIG+T9a7vU=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKIG+T9bDug=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKIG+T9cIfM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKIG+T9dArI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKIG+T9e1Wk=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1080, + "top": -504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKIG+T9fRvU=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1080, + "top": -504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKIG+T9gBhM=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1080, + "top": -504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKIG+T9hA48=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1080, + "top": -504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKIG+T9inVI=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "model": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1080, + "top": -504, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1728, + "top": 512, + "width": 197, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKIG+T9Zl2o=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKIG+T9e1Wk=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKIG+T9fRvU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKIG+T9gBhM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKIG+T9hA48=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKIG+T9inVI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QKI4zEKHpSc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKIQ1c=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "font": "Arial;13;0", + "left": 1956, + "top": 662, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 1, + "text": "+通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKJdn8=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1976, + "top": 674, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKKTG0=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2004, + "top": 639, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKL0+I=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2110, + "top": 757, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKMDrE=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2100, + "top": 766, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKNoT0=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2130, + "top": 737, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKOx2g=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1861, + "top": 568, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKP85E=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1855, + "top": 580, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKI4zEKQLJU=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1874, + "top": 544, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKI4zEKR1Nc=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKEuw8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKI4zEKSZgo=", + "_parent": { + "$ref": "AAAAAAF5QKI4zEKHpSc=" + }, + "model": { + "$ref": "AAAAAAF5QKI4zEKFtZg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "tail": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "lineStyle": 1, + "points": "2140:767;1850:547", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QKI4zEKIQ1c=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKI4zEKJdn8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKI4zEKKTG0=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QKI4zEKL0+I=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QKI4zEKMDrE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QKI4zEKNoT0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QKI4zEKOx2g=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QKI4zEKP85E=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QKI4zEKQLJU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QKI4zEKR1Nc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QKI4zEKSZgo=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKuCwkzY630=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKuCwkzZLtk=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzadw4=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 2704, + "top": 112, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzbRGU=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 1879.5, + "top": 995.5, + "width": 77, + "height": 13, + "text": "提示用户选择" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzc5kQ=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 2704, + "top": 112, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKuCwkzd3VI=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 2704, + "top": 112, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1874.5, + "top": 988.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKuCwkzadw4=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKuCwkzbRGU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKuCwkzc5kQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKuCwkzd3VI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKuCw0zeMMo=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1352, + "top": 56, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKuCw0zfhJM=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1352, + "top": 56, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKuCw0zgO20=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1352, + "top": 56, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKuCw0zhG3k=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1352, + "top": 56, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKuCw0ziN7I=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "model": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 1352, + "top": 56, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1856, + "top": 984, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKuCwkzZLtk=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKuCw0zeMMo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKuCw0zfhJM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKuCw0zgO20=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKuCw0zhG3k=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKuCw0ziN7I=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QKvMIE8ZF/E=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8a1To=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "font": "Arial;13;0", + "left": 2013, + "top": 898, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8bx7Y=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2059, + "top": 909, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8c/MU=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2030, + "top": 875, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8df1Y=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2133, + "top": 825, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8e89E=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2140, + "top": 836, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8frKE=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2118, + "top": 801, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8gpg0=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1967, + "top": 971, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8hUUs=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1977, + "top": 979, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QKvMIU8iPfY=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1946, + "top": 953, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKvMIU8jJRc=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8WKCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QKvMIU8kteI=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8ZF/E=" + }, + "model": { + "$ref": "AAAAAAF5QKvMIE8XsG8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "lineStyle": 1, + "points": "2143:803;1938:983", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QKvMIU8a1To=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKvMIU8bx7Y=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKvMIU8c/MU=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QKvMIU8df1Y=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QKvMIU8e89E=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QKvMIU8frKE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QKvMIU8gpg0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QKvMIU8hUUs=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QKvMIU8iPfY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QKvMIU8jJRc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QKvMIU8kteI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKyR6VB+5F0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKyR6VB/sq8=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCAlIw=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 320, + "top": -240, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCBFDc=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "fillColor": "#ff8282", + "font": "Arial;13;1", + "left": 956, + "top": 747.5, + "width": 62, + "height": 13, + "text": "重测方向" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCC81I=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 320, + "top": -240, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKyR6lCDFwk=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 320, + "top": -240, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 951, + "top": 740.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKyR6lCAlIw=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKyR6lCBFDc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKyR6lCC81I=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKyR6lCDFwk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKyR6lCEof0=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKyR6lCFl5A=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKyR6lCGLz0=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKyR6lCHKbg=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKyR6lCIqJE=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "model": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "visible": false, + "fillColor": "#ff8282", + "font": "Arial;13;0", + "left": 160, + "top": -120, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ff8282", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 936, + "top": 736, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKyR6VB/sq8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKyR6lCEof0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKyR6lCFl5A=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKyR6lCGLz0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKyR6lCHKbg=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKyR6lCIqJE=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKysH1F4naw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKysH1F5Vw8=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F6t1U=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 928, + "top": -464, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F7w44=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 1300, + "top": 699.5, + "width": 62, + "height": 13, + "text": "重测测回" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F8ews=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 928, + "top": -464, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKysH1F9CVk=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 928, + "top": -464, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1295, + "top": 692.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKysH1F6t1U=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKysH1F7w44=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKysH1F8ews=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKysH1F9CVk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKysH1F+SbI=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 464, + "top": -232, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKysH1F/p8w=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 464, + "top": -232, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKysH1GAwRg=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 464, + "top": -232, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKysH1GBWy4=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 464, + "top": -232, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKysH1GC8OE=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "model": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 464, + "top": -232, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1280, + "top": 688, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKysH1F5Vw8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKysH1F+SbI=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKysH1F/p8w=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKysH1GAwRg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKysH1GBWy4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKysH1GC8OE=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QKzDRVJysxE=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QKzDRVJztrc=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ0nsk=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1072, + "top": -928, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ1z+Q=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 1398.5, + "top": 523.5, + "width": 226, + "height": 13, + "text": "resetSurveyorStateAndKeepPosition" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ29Q0=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1072, + "top": -928, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QKzDRVJ3D90=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1072, + "top": -928, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1393.5, + "top": 516.5, + "width": 237.5634765625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QKzDRVJ0nsk=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QKzDRVJ1z+Q=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QKzDRVJ29Q0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QKzDRVJ3D90=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QKzDRVJ4vK0=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 536, + "top": -464, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QKzDRVJ5ijM=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 536, + "top": -464, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QKzDRVJ6ScY=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 536, + "top": -464, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QKzDRVJ71p4=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 536, + "top": -464, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QKzDRVJ8l2g=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "model": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 536, + "top": -464, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1344, + "top": 512, + "width": 335, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QKzDRVJztrc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QKzDRVJ4vK0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QKzDRVJ5ijM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QKzDRVJ6ScY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QKzDRVJ71p4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QKzDRVJ8l2g=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QK2QmFlvdS8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFlwJfE=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "font": "Arial;13;0", + "left": 1686, + "top": 768, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 1, + "text": "+忽略" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFlxSkY=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1691, + "top": 778, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFly6tM=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1725, + "top": 749, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFlzr3g=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1873, + "top": 967, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl0RxM=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1862, + "top": 974, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl1X3o=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1897, + "top": 952, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl29pE=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1531, + "top": 570, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl39y0=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1523, + "top": 580, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK2QmFl4Ns0=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1549, + "top": 549, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK2QmFl5muU=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1lsCzU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK2QmFl6Y7A=", + "_parent": { + "$ref": "AAAAAAF5QK2QmFlvdS8=" + }, + "model": { + "$ref": "AAAAAAF5QK2Ql1ltUBY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "tail": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "lineStyle": 1, + "points": "1902:983;1526:547", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QK2QmFlwJfE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QK2QmFlxSkY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QK2QmFly6tM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QK2QmFlzr3g=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QK2QmFl0RxM=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QK2QmFl1X3o=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QK2QmFl29pE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QK2QmFl39y0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QK2QmFl4Ns0=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QK2QmFl5muU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QK2QmFl6Y7A=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QK340l0Fv9Q=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0GnqQ=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1392, + "top": 471, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0Habc=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1384, + "top": 484, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0IZgE=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1407, + "top": 446, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0Jr30=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1450, + "top": 504, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0KziQ=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1441, + "top": 515, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0LSAI=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1467, + "top": 483, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0MEF0=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1335, + "top": 438, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0NAX0=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1331, + "top": 451, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QK340l0Obj8=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1345, + "top": 413, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK340l0PZLk=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0ChAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QK340l0QvTM=", + "_parent": { + "$ref": "AAAAAAF5QK340l0Fv9Q=" + }, + "model": { + "$ref": "AAAAAAF5QK340l0D79M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "lineStyle": 1, + "points": "1480:511;1321:419", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QK340l0GnqQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QK340l0Habc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QK340l0IZgE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QK340l0Jr30=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QK340l0KziQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QK340l0LSAI=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QK340l0MEF0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QK340l0NAX0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QK340l0Obj8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QK340l0PZLk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QK340l0QvTM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QLdiXGHqtMU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHrPm0=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1442, + "top": 883, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHsNrs=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1438, + "top": 898, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHtajM=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1449, + "top": 854, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHu5Ak=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1826, + "top": 985, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHvESE=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1820, + "top": 998, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHwu2c=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1837, + "top": 960, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHxgP0=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1059, + "top": 782, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHyZg0=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1058, + "top": 795, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLdiXGHzjfw=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1062, + "top": 754, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLdiXGH0aoo=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HnzLc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -72, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLdiXGH1FM8=", + "_parent": { + "$ref": "AAAAAAF5QLdiXGHqtMU=" + }, + "model": { + "$ref": "AAAAAAF5QLdiW2HodP8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 528, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "tail": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "lineStyle": 1, + "points": "1855:984;1038:767", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QLdiXGHrPm0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QLdiXGHsNrs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QLdiXGHtajM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QLdiXGHu5Ak=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QLdiXGHvESE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QLdiXGHwu2c=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QLdiXGHxgP0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QLdiXGHyZg0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QLdiXGHzjfw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QLdiXGH0aoo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QLdiXGH1FM8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QLwOJ2bPDnI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QLwOJ2bQ8Ro=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bRPfA=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 560, + "top": -528, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bSTVM=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "fillColor": "#5656ff", + "font": "Arial;13;1", + "left": 1090.5, + "top": 587.5, + "width": 93, + "height": 13, + "text": "resurveyPoints" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bTKUY=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 560, + "top": -528, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QLwOJ2bUBI4=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 560, + "top": -528, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 1085.5, + "top": 580.5, + "width": 103.9326171875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QLwOJ2bRPfA=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QLwOJ2bSTVM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QLwOJ2bTKUY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QLwOJ2bUBI4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QLwOJ2bVEa0=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QLwOJ2bWae0=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QLwOJ2bXEAg=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QLwOKGbYe7A=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QLwOKGbZQqo=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "model": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "visible": false, + "fillColor": "#5656ff", + "font": "Arial;13;0", + "left": 280, + "top": -264, + "width": 10, + "height": 10 + } + ], + "fillColor": "#5656ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1064, + "top": 576, + "width": 146, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QLwOJ2bQ8Ro=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QLwOJ2bVEa0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QLwOJ2bWae0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QLwOJ2bXEAg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QLwOKGbYe7A=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QLwOKGbZQqo=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QLx6RGoNnGE=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoOcBM=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1050, + "top": 656, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoPkXM=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1039, + "top": 646, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoQUT8=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1071, + "top": 677, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoRB9A=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1009, + "top": 699, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoSk+A=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1001, + "top": 689, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoT8Lo=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1026, + "top": 721, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoUHro=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1090, + "top": 613, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoVk68=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1079, + "top": 606, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QLx6RGoW9No=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1113, + "top": 629, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLx6RGoXj7U=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoKxZI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QLx6RGoYmUk=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoNnGE=" + }, + "model": { + "$ref": "AAAAAAF5QLx6RGoLs1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "tail": { + "$ref": "AAAAAAF5QKyR6VB+5F0=" + }, + "lineStyle": 1, + "points": "1003:735;1119:611", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QLx6RGoOcBM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QLx6RGoPkXM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QLx6RGoQUT8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QLx6RGoRB9A=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QLx6RGoSk+A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QLx6RGoT8Lo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QLx6RGoUHro=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QLx6RGoVk68=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QLx6RGoW9No=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QLx6RGoXj7U=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QLx6RGoYmUk=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5QMaQUG/rlG8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5QMaQUG/sv3A=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUG/tkJ4=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1712, + "top": 1488, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUG/umGY=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 1692.5, + "top": 1451.5, + "width": 216, + "height": 13, + "text": "switchState2RestartInCurrentCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUW/vdlU=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1712, + "top": 1488, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5QMaQUW/w0wQ=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1712, + "top": 1488, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 1687.5, + "top": 1444.5, + "width": 227.4580078125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMaQUG/tkJ4=" + }, + "nameLabel": { + "$ref": "AAAAAAF5QMaQUG/umGY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5QMaQUW/vdlU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMaQUW/w0wQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5QMaQUW/x48o=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 856, + "top": 744, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5QMaQUW/yJ84=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 856, + "top": 744, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5QMaQUW/z4XE=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 856, + "top": 744, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5QMaQUW/0u+w=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 856, + "top": 744, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5QMaQUW/13YU=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "model": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 856, + "top": 744, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1640, + "top": 1440, + "width": 321, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5QMaQUG/sv3A=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5QMaQUW/x48o=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5QMaQUW/yJ84=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5QMaQUW/z4XE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5QMaQUW/0u+w=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5QMaQUW/13YU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QMbzEXNQ00I=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNR/aw=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "font": "Arial;13;0", + "left": 1450, + "top": 1009, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 1, + "text": "+开始重测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNSJUg=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1491, + "top": 1000, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNTTKw=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1456, + "top": 1028, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNUT2s=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1177, + "top": 616, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNVmq4=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1189, + "top": 610, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNWUrs=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1153, + "top": 629, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNX73U=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1782, + "top": 1403, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNYoLo=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1791, + "top": 1393, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMbzEXNZwIQ=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1762, + "top": 1423, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMbzEXNaGMo=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNNh8o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMbzEXNbVPI=", + "_parent": { + "$ref": "AAAAAAF5QMbzEXNQ00I=" + }, + "model": { + "$ref": "AAAAAAF5QMbzEHNOm6M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "lineStyle": 1, + "points": "1150:611;1786:1439", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QMbzEXNR/aw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMbzEXNSJUg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMbzEXNTTKw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QMbzEXNUT2s=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QMbzEXNVmq4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QMbzEXNWUrs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QMbzEXNX73U=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QMbzEXNYoLo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QMbzEXNZwIQ=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QMbzEXNaGMo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QMbzEXNbVPI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QMjEp4Xxm70=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4XyXqY=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1819, + "top": 1662, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4XzTSE=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1834, + "top": 1662, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X0hBs=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1790, + "top": 1663, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X1sYc=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1815, + "top": 1494, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X2bX4=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1829, + "top": 1496, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X3ebc=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1788, + "top": 1490, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X4oDY=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1825, + "top": 1830, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X5UnY=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1838, + "top": 1827, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMjEp4X6pQM=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1797, + "top": 1835, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMjEqIX7oU8=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXuicM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMjEqIX8oCk=", + "_parent": { + "$ref": "AAAAAAF5QMjEp4Xxm70=" + }, + "model": { + "$ref": "AAAAAAF5QMjEpoXvKNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 480, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "tail": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "lineStyle": 1, + "points": "1800:1475;1811:1863", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QMjEp4XyXqY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMjEp4XzTSE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMjEp4X0hBs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QMjEp4X1sYc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QMjEp4X2bX4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QMjEp4X3ebc=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QMjEp4X4oDY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QMjEp4X5UnY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QMjEp4X6pQM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QMjEqIX7oU8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QMjEqIX8oCk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QMnaf4p31wI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p4YhA=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1532, + "top": 768, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p5heM=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1528, + "top": 782, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p6u/E=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1539, + "top": 739, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p7HWo=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1859, + "top": 975, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p8uO8=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1849, + "top": 985, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p9ZYk=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1877, + "top": 954, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p+8dA=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1403, + "top": 734, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4p/pOU=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1402, + "top": 747, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QMnaf4qAet8=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1406, + "top": 706, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMnaf4qBmzo=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p0R7o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QMnaf4qCCtY=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4p31wI=" + }, + "model": { + "$ref": "AAAAAAF5QMnaf4p1n0A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "tail": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "lineStyle": 1, + "points": "1889:983;1536:760;1382:719", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QMnaf4p4YhA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QMnaf4p5heM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QMnaf4p6u/E=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QMnaf4p7HWo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QMnaf4p8uO8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QMnaf4p9ZYk=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QMnaf4p+8dA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QMnaf4p/pOU=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QMnaf4qAet8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QMnaf4qBmzo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QMnaf4qCCtY=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QNAhapFuI7s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFvVXY=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "font": "Arial;13;0", + "left": 1437, + "top": 796, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 1, + "text": "+取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFwVCE=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1459, + "top": 782, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFxPvQ=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1442, + "top": 823, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFyOWw=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1378, + "top": 723, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapFz3Mw=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1388, + "top": 715, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAhapF0mvQ=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1356, + "top": 740, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAha5F1FkI=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1852, + "top": 953, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAha5F2OJ8=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1855, + "top": 940, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNAha5F3+WU=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1846, + "top": 980, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNAha5F4AZU=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFrudc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 744, + "top": -56, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNAha5F5UgE=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFuI7s=" + }, + "model": { + "$ref": "AAAAAAF5QNAhapFsZZ8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 744, + "top": -56, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "lineStyle": 1, + "points": "1349:723;1448:816;1871:983", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QNAhapFvVXY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QNAhapFwVCE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QNAhapFxPvQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QNAhapFyOWw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QNAhapFz3Mw=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QNAhapF0mvQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QNAha5F1FkI=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QNAha5F2OJ8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QNAha5F3+WU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QNAha5F4AZU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QNAha5F5UgE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5QNFL66Cbz6k=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CcWkE=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "font": "Arial;13;0", + "left": 1393, + "top": 600, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 1, + "text": "+忽略" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CdTo8=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1399, + "top": 589, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Ce+u8=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1430, + "top": 621, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CfR+U=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1357, + "top": 652, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Cg04o=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1349, + "top": 641, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66ChcXw=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1373, + "top": 674, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66CipGA=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1462, + "top": 548, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Cj6oQ=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1452, + "top": 540, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5QNFL66Ck0os=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1485, + "top": 565, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNFL66ClLUo=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCY2AQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5QNFL66Cm8No=", + "_parent": { + "$ref": "AAAAAAF5QNFL66Cbz6k=" + }, + "model": { + "$ref": "AAAAAAF5QNFL6qCZ01s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 696, + "top": 8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "tail": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "lineStyle": 1, + "points": "1349:687;1492:547", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5QNFL66CcWkE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5QNFL66CdTo8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5QNFL66Ce+u8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5QNFL66CfR+U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5QNFL66Cg04o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5QNFL66ChcXw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5QNFL66CipGA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5QNFL66Cj6oQ=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5QNFL66Ck0os=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5QNFL66ClLUo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5QNFL66Cm8No=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVTun0vZBv0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vaxdo=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "font": "Arial;13;0", + "left": 1276, + "top": 542, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 1, + "text": "+重测失败" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vbxuQ=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1303, + "top": 527, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vcmj8=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1310, + "top": 571, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vdoCc=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1233, + "top": 554, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0ved/I=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1233, + "top": 541, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vfAMs=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1233, + "top": 582, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTun0vg9C0=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1377, + "top": 530, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTuoEvhMzo=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1373, + "top": 517, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVTuoEviZLY=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1386, + "top": 556, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVTuoEvjqMY=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vWQ0U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVTuoEvkZEE=", + "_parent": { + "$ref": "AAAAAAF5RVTun0vZBv0=" + }, + "model": { + "$ref": "AAAAAAF5RVTun0vXr0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKzDRVJysxE=" + }, + "tail": { + "$ref": "AAAAAAF5QLwOJ2bPDnI=" + }, + "lineStyle": 1, + "points": "1210:580;1406:547", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVTun0vaxdo=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVTun0vbxuQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVTun0vcmj8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVTun0vdoCc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVTun0ved/I=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVTun0vfAMs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVTun0vg9C0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVTuoEvhMzo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVTuoEviZLY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVTuoEvjqMY=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVTuoEvkZEE=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVWv21Zu6Aw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZvsKs=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1302, + "top": 1897, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZwRzk=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1302, + "top": 1912, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZxCSk=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1301, + "top": 1868, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21Zyej0=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1693, + "top": 1891, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv21ZzuYg=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1691, + "top": 1904, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ0MPo=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1697, + "top": 1863, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ18no=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 912, + "top": 1904, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ21Iw=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 914, + "top": 1917, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVWv3FZ3nLg=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 907, + "top": 1877, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVWv3FZ4weo=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZro+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVWv3FZ58yM=", + "_parent": { + "$ref": "AAAAAAF5RVWv21Zu6Aw=" + }, + "model": { + "$ref": "AAAAAAF5RVWv2lZs/XI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "tail": { + "$ref": "AAAAAAF5QJWvCwgzk0M=" + }, + "lineStyle": 1, + "points": "1719:1882;886:1896", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVWv21ZvsKs=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVWv21ZwRzk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVWv21ZxCSk=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVWv21Zyej0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVWv21ZzuYg=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVWv3FZ0MPo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVWv3FZ18no=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVWv3FZ21Iw=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVWv3FZ3nLg=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVWv3FZ4weo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVWv3FZ58yM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RVbpp1nKVhc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RVbpp1nLusg=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnM530=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1504, + "top": -656, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnNEWc=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 1007.5, + "top": 843.5, + "width": 77, + "height": 13, + "text": "执行测回删除" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnO5/0=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1504, + "top": -656, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RVbpqFnPMMU=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1504, + "top": -656, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 1002.5, + "top": 836.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVbpqFnM530=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RVbpqFnNEWc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RVbpqFnO5/0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVbpqFnPMMU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RVbpqFnQqa0=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 752, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RVbpqFnRVaY=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 752, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RVbpqFnSiyY=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 752, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RVbpqFnTp/o=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 752, + "top": -328, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RVbpqFnUeVQ=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "model": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 752, + "top": -328, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 984, + "top": 832, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RVbpp1nLusg=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RVbpqFnQqa0=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RVbpqFnRVaY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RVbpqFnSiyY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RVbpqFnTp/o=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RVbpqFnUeVQ=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVcwNF0lj/I=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0m640=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1193, + "top": 784, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0n9pE=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1200, + "top": 797, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0osMg=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1180, + "top": 757, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0pne0=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1277, + "top": 742, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0qTm8=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1281, + "top": 755, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0rLrQ=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1269, + "top": 715, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0s558=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1110, + "top": 826, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0tAew=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1119, + "top": 837, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVcwNF0uE34=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1094, + "top": 804, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVcwNF0vsAE=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0iVWE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVcwNF0w5ls=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0lj/I=" + }, + "model": { + "$ref": "AAAAAAF5RVcwNF0jQf0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "tail": { + "$ref": "AAAAAAF5QKysH1F4naw=" + }, + "lineStyle": 1, + "points": "1294:723;1081:831", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVcwNF0m640=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVcwNF0n9pE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVcwNF0osMg=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVcwNF0pne0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVcwNF0qTm8=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVcwNF0rLrQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVcwNF0s558=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVcwNF0tAew=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVcwNF0uE34=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVcwNF0vsAE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVcwNF0w5ls=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RVdEqmBOVoU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBP7Mw=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1431, + "top": 1135, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBQ+G0=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1440, + "top": 1123, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBRwAI=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1412, + "top": 1158, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBSb60=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1096, + "top": 865, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBT13s=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1106, + "top": 856, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBU/V0=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1076, + "top": 884, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBVD2o=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1767, + "top": 1405, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBWru8=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1773, + "top": 1393, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RVdEqmBX1jY=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1753, + "top": 1429, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVdEqmBYqxc=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBL2Ro=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RVdEqmBZh5U=", + "_parent": { + "$ref": "AAAAAAF5RVdEqmBOVoU=" + }, + "model": { + "$ref": "AAAAAAF5RVdEqWBMaWs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5RVbpp1nKVhc=" + }, + "lineStyle": 1, + "points": "1067:867;1778:1439", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RVdEqmBP7Mw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RVdEqmBQ+G0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RVdEqmBRwAI=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RVdEqmBSb60=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RVdEqmBT13s=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RVdEqmBU/V0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RVdEqmBVD2o=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RVdEqmBWru8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RVdEqmBX1jY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RVdEqmBYqxc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RVdEqmBZh5U=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWbWiJQ+LqI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWbWiJQ/pQw=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRAz/w=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -32, + "top": 2160, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRBIu8=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "font": "Arial;13;1", + "left": 1482, + "top": 1715.5, + "width": 167, + "height": 13, + "text": "doCalScheduleSingleCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRCluw=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -32, + "top": 2160, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWbWiJRDVic=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -32, + "top": 2160, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1477, + "top": 1708.5, + "width": 177.603515625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWbWiJRAz/w=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWbWiJRBIu8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWbWiJRCluw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWbWiJRDVic=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWbWiJRE0bA=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "top": 1080, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWbWiJRF/Bs=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "top": 1080, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWbWiJRG03U=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "top": 1080, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWbWiJRHoKE=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "top": 1080, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWbWiZRIksM=", + "_parent": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "model": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -16, + "top": 1080, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1440, + "top": 1704, + "width": 251, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWbWiJQ/pQw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWbWiJRE0bA=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWbWiJRF/Bs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWbWiJRG03U=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWbWiJRHoKE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWbWiZRIksM=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWiYh6tfjKM=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWiYh6tg64I=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6th8ec=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -352, + "top": 1872, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6tiGF8=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 1239.5, + "top": 1659.5, + "width": 116, + "height": 13, + "text": "该测回是否完成测量" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6tjmMc=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -352, + "top": 1872, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWiYh6tktDE=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -352, + "top": 1872, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 1234.5, + "top": 1652.5, + "width": 127, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWiYh6th8ec=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWiYh6tiGF8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWiYh6tjmMc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWiYh6tktDE=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWiYh6tlfk4=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -176, + "top": 936, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWiYh6tmr4M=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -176, + "top": 936, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWiYiKtnqn4=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -176, + "top": 936, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWiYiKtodLM=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -176, + "top": 936, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWiYiKtpwlU=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "model": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -176, + "top": 936, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1208, + "top": 1648, + "width": 179, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWiYh6tg64I=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWiYh6tlfk4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWiYh6tmr4M=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWiYiKtnqn4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWiYiKtodLM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWiYiKtpwlU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWkDsK/8U8w=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsK/9X9k=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1427, + "top": 1701, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsK/+yfw=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1424, + "top": 1716, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsK//l9E=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1434, + "top": 1672, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAAR6U=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1450, + "top": 1706, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAB24o=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1445, + "top": 1718, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLACKmw=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1460, + "top": 1680, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLADQMw=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1405, + "top": 1696, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAEjZI=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1404, + "top": 1710, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWkDsLAFuWM=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1406, + "top": 1669, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWkDsLAGH8s=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/5hKI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1160, + "top": 208, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWkDsLAHEmo=", + "_parent": { + "$ref": "AAAAAAF5RWkDsK/8U8w=" + }, + "model": { + "$ref": "AAAAAAF5RWkDr6/6Fyk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1160, + "top": 208, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "tail": { + "$ref": "AAAAAAF5RWbWiJQ+LqI=" + }, + "lineStyle": 1, + "points": "1479:1703;1383:1683", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWkDsK/9X9k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWkDsK/+yfw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWkDsK//l9E=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWkDsLAAR6U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWkDsLAB24o=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWkDsLACKmw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWkDsLADQMw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWkDsLAEjZI=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWkDsLAFuWM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWkDsLAGH8s=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWkDsLAHEmo=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWmAObijdJg=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObikqE4=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "font": "Arial;13;0", + "left": 1519, + "top": 1541, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 1, + "text": "+未完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObilnCo=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1536, + "top": 1527, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObima+o=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1553, + "top": 1568, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObinxIM=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1359, + "top": 1617, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObioxZQ=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1356, + "top": 1604, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObip4S4=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1365, + "top": 1644, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObiqN8s=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1726, + "top": 1465, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObir6/Y=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1719, + "top": 1453, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWmAObisLv4=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1740, + "top": 1488, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWmAObijdJg=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWmAObitY30=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObigyuY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -888, + "top": 512, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWmAObiuohI=", + "_parent": { + "$ref": "AAAAAAF5RWmAObijdJg=" + }, + "model": { + "$ref": "AAAAAAF5RWmAObih5u0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -888, + "top": 512, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "lineStyle": 1, + "points": "1341:1647;1756:1475", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWmAObikqE4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWmAObilnCo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWmAObima+o=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWmAObinxIM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWmAObioxZQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWmAObip4S4=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWmAObiqN8s=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWmAObir6/Y=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWmAObisLv4=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWmAObitY30=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWmAObiuohI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWo+Isgcitc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWo+Isgdtvs=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+Isge0Bo=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 1072, + "top": -480, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+Isgf4GU=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 946, + "top": 939.5, + "width": 90, + "height": 13, + "text": "执行单测回检测" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+Isgg0Do=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 1072, + "top": -480, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWo+IsghCRI=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 1072, + "top": -480, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 941, + "top": 932.5, + "width": 101, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWo+Isge0Bo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWo+Isgf4GU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWo+Isgg0Do=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWo+IsghCRI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWo+IsgimWA=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 536, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWo+IsgjYQU=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 536, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWo+I8gkz+0=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 536, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWo+I8gl0UM=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 536, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWo+I8gmRYk=", + "_parent": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "model": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 536, + "top": -240, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 920, + "top": 928, + "width": 142, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWo+Isgdtvs=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWo+IsgimWA=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWo+IsgjYQU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWo+I8gkz+0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWo+I8gl0UM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWo+I8gmRYk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWqc88vvIe4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vwQ3o=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "font": "Arial;13;0", + "left": 1113, + "top": 1304, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 1, + "text": "+完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vxT8A=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1115, + "top": 1310, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vy9C4=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1156, + "top": 1293, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88vzWws=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1265, + "top": 1622, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v0Sh0=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1251, + "top": 1626, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v168Q=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1292, + "top": 1616, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v2l68=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 994, + "top": 986, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v3ThA=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 983, + "top": 994, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWqc88v4wsI=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1017, + "top": 972, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWqc88v5V34=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svs8AE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWqc88v6Awc=", + "_parent": { + "$ref": "AAAAAAF5RWqc88vvIe4=" + }, + "model": { + "$ref": "AAAAAAF5RWqc8svtE1U=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "tail": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "lineStyle": 1, + "points": "1289:1647;998:963", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWqc88vwQ3o=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWqc88vxT8A=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWqc88vy9C4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWqc88vzWws=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWqc88v0Sh0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWqc88v168Q=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWqc88v2l68=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWqc88v3ThA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWqc88v4wsI=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWqc88v5V34=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWqc88v6Awc=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RWvJyNWG+ro=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJyNWHf5E=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "font": "Arial;13;0", + "left": 1422, + "top": 952, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 1, + "text": "+未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWI+RY=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1459, + "top": 937, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWJFaw=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1457, + "top": 981, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWKHVg=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1088, + "top": 929, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWLzSM=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1091, + "top": 916, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWM5GE=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1082, + "top": 956, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWN+wY=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1829, + "top": 974, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWO3W0=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1828, + "top": 961, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RWvJydWPqsM=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1832, + "top": 1002, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWvJydWQnX8=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWDYLg=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RWvJydWRolw=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWG+ro=" + }, + "model": { + "$ref": "AAAAAAF5RWvJyNWEI/s=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "lineStyle": 1, + "points": "1062:949;1855:997", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RWvJyNWHf5E=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWvJydWI+RY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWvJydWJFaw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RWvJydWKHVg=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RWvJydWLzSM=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RWvJydWM5GE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RWvJydWN+wY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RWvJydWO3W0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RWvJydWPqsM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RWvJydWQnX8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RWvJydWRolw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RWzzg+QpJu4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RWzzg+QqF0g=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QruaM=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1360, + "top": 880, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QscXo=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "font": "Arial;13;1", + "left": 1021.5, + "top": 1747.5, + "width": 144, + "height": 13, + "text": "doCalScheduleAllCycle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QtTVY=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1360, + "top": 880, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RWzzg+QuN+0=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1360, + "top": 880, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1016.5, + "top": 1740.5, + "width": 155.208984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RWzzg+QruaM=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RWzzg+QscXo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RWzzg+QtTVY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RWzzg+QuN+0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RWzzg+QvVhA=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 680, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RWzzhOQwWI4=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 680, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RWzzhOQxyn0=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 680, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RWzzhOQy5lE=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 680, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RWzzhOQzPbk=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "model": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 680, + "top": 440, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 984, + "top": 1736, + "width": 219, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RWzzg+QqF0g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RWzzg+QvVhA=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RWzzhOQwWI4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RWzzhOQxyn0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RWzzhOQy5lE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RWzzhOQzPbk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RXS1EJdHVug=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EJdIPgY=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1189, + "top": 1689, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EJdJc8o=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1183, + "top": 1675, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdKavs=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1200, + "top": 1716, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdLggY=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1152, + "top": 1704, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdMTYk=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1149, + "top": 1691, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdNexM=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1159, + "top": 1731, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdOTNQ=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1225, + "top": 1673, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdPiGs=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1217, + "top": 1662, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXS1EZdQDNw=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1240, + "top": 1697, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXS1EZdR8Jw=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dEJJs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXS1EZdSgUI=", + "_parent": { + "$ref": "AAAAAAF5RXS1EJdHVug=" + }, + "model": { + "$ref": "AAAAAAF5RXS1D5dF2N4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RWiYh6tfjKM=" + }, + "tail": { + "$ref": "AAAAAAF5RWzzg+QpJu4=" + }, + "lineStyle": 1, + "points": "1135:1735;1255:1683", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RXS1EJdIPgY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXS1EJdJc8o=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXS1EZdKavs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RXS1EZdLggY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RXS1EZdMTYk=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RXS1EZdNexM=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RXS1EZdOTNQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RXS1EZdPiGs=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RXS1EZdQDNw=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RXS1EZdR8Jw=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RXS1EZdSgUI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RXZT37eTFkI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RXZT37eUYGs=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eVlUE=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -64, + "top": -608, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eWL9s=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 427, + "top": 555.5, + "width": 209, + "height": 13, + "text": "是否是doCalScheduleAllCycle状态" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eXM1A=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -64, + "top": -608, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RXZT37eYXNc=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -64, + "top": -608, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 422, + "top": 548.5, + "width": 220.208984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXZT37eVlUE=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RXZT37eWL9s=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RXZT37eXM1A=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXZT37eYXNc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RXZT4LeZ09I=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RXZT4LeaFc4=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RXZT4Leb1Fs=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RXZT4Lec37Q=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -304, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RXZT4Led934=", + "_parent": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "model": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": -304, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 376, + "top": 544, + "width": 311, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RXZT37eUYGs=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RXZT4LeZ09I=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RXZT4LeaFc4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RXZT4Leb1Fs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RXZT4Lec37Q=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RXZT4Led934=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RXgsFM1PXPQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1QsVQ=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "font": "Arial;13;0", + "left": 734, + "top": 758, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 1, + "text": "+通过" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1Ra4g=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 740, + "top": 769, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1S7Hk=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 769, + "top": 735, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1TpZY=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 938, + "top": 915, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1UfIs=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 928, + "top": 924, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1VQJk=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 959, + "top": 897, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1WeYo=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 563, + "top": 601, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1XNlM=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 556, + "top": 612, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXgsFM1Y+GY=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 577, + "top": 577, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXgsFc1ZbPg=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ml9Y=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXgsFc1aqC8=", + "_parent": { + "$ref": "AAAAAAF5RXgsFM1PXPQ=" + }, + "model": { + "$ref": "AAAAAAF5RXgsE81Ncj4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "tail": { + "$ref": "AAAAAAF5RWo+Isgcitc=" + }, + "lineStyle": 1, + "points": "968:927;553:579", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RXgsFM1QsVQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXgsFM1Ra4g=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXgsFM1S7Hk=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RXgsFM1TpZY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RXgsFM1UfIs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RXgsFM1VQJk=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RXgsFM1WeYo=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RXgsFM1XNlM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RXgsFM1Y+GY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RXgsFc1ZbPg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RXgsFc1aqC8=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RXiiXNaNYZA=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaOCjk=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "font": "Arial;13;0", + "left": 690, + "top": 496, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 1, + "text": "+不是" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaPvOQ=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 702, + "top": 481, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaQrNs=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 713, + "top": 525, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaRjEI=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 625, + "top": 516, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaS5Dg=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 624, + "top": 502, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaT/jE=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 628, + "top": 543, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaUStc=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 787, + "top": 476, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaVtIQ=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 781, + "top": 464, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RXiiXNaWcc8=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 797, + "top": 502, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXiiXNaXeGE=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aKkno=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RXiiXNaY4kk=", + "_parent": { + "$ref": "AAAAAAF5RXiiXNaNYZA=" + }, + "model": { + "$ref": "AAAAAAF5RXiiW9aL3M4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "lineStyle": 1, + "points": "604:543;816:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RXiiXNaOCjk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RXiiXNaPvOQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RXiiXNaQrNs=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RXiiXNaRjEI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RXiiXNaS5Dg=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RXiiXNaT/jE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RXiiXNaUStc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RXiiXNaVtIQ=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RXiiXNaWcc8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RXiiXNaXeGE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RXiiXNaY4kk=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RX4IzuDknh4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RX4IzuDlZLU=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDmg8A=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": -240, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDnpIw=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 69, + "top": 1043.5, + "width": 181, + "height": 13, + "text": "检测其他测回是否有待补测数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDoCnY=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": -240, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX4IzuDpft0=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -240, + "top": -240, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 64, + "top": 1036.5, + "width": 192, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX4IzuDmg8A=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RX4IzuDnpIw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RX4IzuDoCnY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX4IzuDpft0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RX4IzuDqBSE=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RX4IzuDrpSs=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RX4IzuDsUmU=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RX4IzuDtPH4=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RX4IzuDu2iA=", + "_parent": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "model": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -120, + "top": -120, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 24, + "top": 1032, + "width": 271, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RX4IzuDlZLU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RX4IzuDqBSE=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RX4IzuDrpSs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RX4IzuDsUmU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RX4IzuDtPH4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RX4IzuDu2iA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RX50xuaSWVY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaTzmw=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "font": "Arial;13;0", + "left": 346, + "top": 808, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 1, + "text": "+是" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaUoZk=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 368, + "top": 817, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaVv9g=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 333, + "top": 789, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaWjUs=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 513, + "top": 602, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaX0wc=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 522, + "top": 612, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaYr8k=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 493, + "top": 582, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaZPzE=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 200, + "top": 1013, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuaaRl8=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 212, + "top": 1019, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX50xuabK8k=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 176, + "top": 1000, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX50xuac8yw=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaPW6s=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX50xuadjR8=", + "_parent": { + "$ref": "AAAAAAF5RX50xuaSWVY=" + }, + "model": { + "$ref": "AAAAAAF5RX50xeaQJxA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "tail": { + "$ref": "AAAAAAF5RXZT37eTFkI=" + }, + "lineStyle": 1, + "points": "517:579;173:1031", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RX50xuaTzmw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX50xuaUoZk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX50xuaVv9g=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RX50xuaWjUs=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RX50xuaX0wc=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RX50xuaYr8k=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RX50xuaZPzE=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RX50xuaaRl8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RX50xuabK8k=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RX50xuac8yw=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RX50xuadjR8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RX8e8+6VSP4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RX8e9O6W2xM=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6XR7Q=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -16, + "top": -496, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6YBmI=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 487.5, + "top": 963.5, + "width": 77, + "height": 13, + "text": "提示用户选择" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6ZG1Q=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -16, + "top": -496, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX8e9O6aHT4=", + "_parent": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -16, + "top": -496, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 482.5, + "top": 956.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX8e9O6XR7Q=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RX8e9O6YBmI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RX8e9O6ZG1Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX8e9O6aHT4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RX8e9O6brFw=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -8, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RX8e9O6chUQ=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -8, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RX8e9O6d2JQ=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -8, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RX8e9O6ehSE=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -8, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RX8e9O6fsgA=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "model": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -8, + "top": -248, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 464, + "top": 952, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RX8e9O6W2xM=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RX8e9O6brFw=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RX8e9O6chUQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RX8e9O6d2JQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RX8e9O6ehSE=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RX8e9O6fsgA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RX9EYPFfH8Q=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFg5zI=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "font": "Arial;13;0", + "left": 338, + "top": 986, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFh+Xw=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 345, + "top": 971, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFiQm8=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 355, + "top": 1015, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFj0XU=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 263, + "top": 1004, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFkHH4=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 262, + "top": 991, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFlEI4=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 264, + "top": 1032, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFmXkk=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 434, + "top": 967, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFnjvk=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 429, + "top": 955, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX9EYPFoLfQ=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 444, + "top": 993, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX9EYPFp0GM=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFcd3k=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX9EYPFqX8k=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFfH8Q=" + }, + "model": { + "$ref": "AAAAAAF5RX9EYPFdtmc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "tail": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "lineStyle": 1, + "points": "241:1031;463:983", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RX9EYPFg5zI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX9EYPFh+Xw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX9EYPFiQm8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RX9EYPFj0XU=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RX9EYPFkHH4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RX9EYPFlEI4=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RX9EYPFmXkk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RX9EYPFnjvk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RX9EYPFoLfQ=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RX9EYPFp0GM=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RX9EYPFqX8k=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RX+92/rtdeY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RX+92/ru5aU=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/rvMVo=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 160, + "top": 32, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/rwk7c=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 876, + "top": 1243.5, + "width": 62, + "height": 13, + "text": "切换测回" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/rxBWI=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 160, + "top": 32, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RX+92/ryOmk=", + "_parent": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 160, + "top": 32, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 871, + "top": 1236.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX+92/rvMVo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RX+92/rwk7c=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RX+92/rxBWI=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX+92/ryOmk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RX+92/rzeck=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 80, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RX+92/r0UGE=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 80, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RX+92/r1dEM=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 80, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RX+92/r24rI=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 80, + "top": 16, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RX+92/r3m0Y=", + "_parent": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "model": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 80, + "top": 16, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 856, + "top": 1232, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RX+92/ru5aU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RX+92/rzeck=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RX+92/r0UGE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RX+92/r1dEM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RX+92/r24rI=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RX+92/r3m0Y=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RX/wMv3JNxw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3KAYY=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1343, + "top": 1329, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3L2sA=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1346, + "top": 1314, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3MDuY=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1336, + "top": 1358, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3NMMM=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 986, + "top": 1246, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3OaEE=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 991, + "top": 1233, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3P2uw=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 976, + "top": 1272, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3QkNM=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1701, + "top": 1412, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3RuyM=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1701, + "top": 1399, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RX/wM/3SQ5M=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1699, + "top": 1440, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX/wM/3TMvA=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3GM64=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RX/wM/3Udik=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3JNxw=" + }, + "model": { + "$ref": "AAAAAAF5RX/wMv3HIz8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "lineStyle": 1, + "points": "958:1261;1723:1439", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RX/wM/3KAYY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RX/wM/3L2sA=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RX/wM/3MDuY=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RX/wM/3NMMM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RX/wM/3OaEE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RX/wM/3P2uw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RX/wM/3QkNM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RX/wM/3RuyM=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RX/wM/3SQ5M=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RX/wM/3TMvA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RX/wM/3Udik=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYA6Lgau9u4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6LgavBvE=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "font": "Arial;13;0", + "left": 674, + "top": 1090, + "width": 98.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 1, + "text": "+跳转到相应测回" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6LgawDgk=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 732, + "top": 1078, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lgaxot4=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 706, + "top": 1115, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6LgayEWk=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 578, + "top": 984, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lgazq+M=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 588, + "top": 974, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga0Sio=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 559, + "top": 1003, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga1FSA=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 869, + "top": 1197, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga2vcA=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 875, + "top": 1185, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYA6Lga3b2g=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 857, + "top": 1222, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYA6Lga4c4g=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQaryvU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYA6Lga51go=", + "_parent": { + "$ref": "AAAAAAF5RYA6Lgau9u4=" + }, + "model": { + "$ref": "AAAAAAF5RYA6LQashgM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX+92/rtdeY=" + }, + "tail": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "lineStyle": 1, + "points": "549:987;882:1231", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYA6LgavBvE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYA6LgawDgk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYA6Lgaxot4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYA6LgayEWk=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYA6Lgazq+M=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYA6Lga0Sio=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYA6Lga1FSA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYA6Lga2vcA=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYA6Lga3b2g=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYA6Lga4c4g=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYA6Lga51go=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYRxIyqNVJQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqOsk8=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "font": "Arial;13;0", + "left": 658, + "top": 706, + "width": 72.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 1, + "text": "+忽略或取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqPdMg=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 682, + "top": 697, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqQWvY=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 719, + "top": 723, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxIyqRHT4=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 541, + "top": 915, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqS57E=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 531, + "top": 905, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqTkAo=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 560, + "top": 934, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqUXmw=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 848, + "top": 497, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqVgEY=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 836, + "top": 491, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYRxJCqWNBU=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 873, + "top": 509, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYRxJCqXBjo=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqKuUY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYRxJCqYdsw=", + "_parent": { + "$ref": "AAAAAAF5RYRxIyqNVJQ=" + }, + "model": { + "$ref": "AAAAAAF5RYRxIyqLN6Y=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "lineStyle": 1, + "points": "538:951;876:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYRxIyqOsk8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYRxIyqPdMg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYRxIyqQWvY=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYRxIyqRHT4=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYRxJCqS57E=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYRxJCqTkAo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYRxJCqUXmw=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYRxJCqVgEY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYRxJCqWNBU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYRxJCqXBjo=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYRxJCqYdsw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RYWBNj55r2s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RYWBNj56ll8=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj57vDo=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": 864, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj582Gg=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 151.5, + "top": 1835.5, + "width": 155, + "height": 13, + "text": "检测其他测回是否有空数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj59CIs=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": 864, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYWBNj5+a6c=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -32, + "top": 864, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 146.5, + "top": 1828.5, + "width": 166, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYWBNj57vDo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RYWBNj582Gg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RYWBNj59CIs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYWBNj5+a6c=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RYWBNj5/meo=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": 432, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RYWBNj6ApFY=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": 432, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RYWBNj6BKos=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": 432, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RYWBNj6CyfU=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": 432, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RYWBNj6DzGw=", + "_parent": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "model": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -16, + "top": 432, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 112, + "top": 1824, + "width": 234, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RYWBNj56ll8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RYWBNj5/meo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RYWBNj6ApFY=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RYWBNj6BKos=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RYWBNj6CyfU=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RYWBNj6DzGw=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYXKoUPzfpc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP0Xm4=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "font": "Arial;13;0", + "left": 197, + "top": 1437, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 1, + "text": "+无" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP1/8o=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 222, + "top": 1436, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP2TmE=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 178, + "top": 1440, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP3dpE=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 178, + "top": 1085, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP4Dks=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 191, + "top": 1086, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP5sn0=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 150, + "top": 1083, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP6dKk=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 238, + "top": 1789, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP7hGo=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 251, + "top": 1786, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYXKoUP8Pbs=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 211, + "top": 1796, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYXKoUP9qJ8=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPwWeY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYXKokP+OFo=", + "_parent": { + "$ref": "AAAAAAF5RYXKoUPzfpc=" + }, + "model": { + "$ref": "AAAAAAF5RYXKoUPxCsE=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "tail": { + "$ref": "AAAAAAF5RX4IzuDknh4=" + }, + "lineStyle": 1, + "points": "161:1067;226:1823", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYXKoUP0Xm4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYXKoUP1/8o=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYXKoUP2TmE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYXKoUP3dpE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYXKoUP4Dks=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYXKoUP5sn0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYXKoUP6dKk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYXKoUP7hGo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYXKoUP8Pbs=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYXKoUP9qJ8=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYXKokP+OFo=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYbKCEsNrL8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsOHZ0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "font": "Arial;13;0", + "left": 351, + "top": 1394, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsP+kM=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 347, + "top": 1389, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsQdPM=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 390, + "top": 1403, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsRxi0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 228, + "top": 1787, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsSIa0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": 1781, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsTIOs=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 252, + "top": 1800, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCEsUoUc=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 496, + "top": 1000, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCUsVQTY=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 483, + "top": 998, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYbKCUsWC+U=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 523, + "top": 1005, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYbKCUsX4lU=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsKkG0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYbKCUsYcdA=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsNrL8=" + }, + "model": { + "$ref": "AAAAAAF5RYbKCEsLR+0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RX8e8+6VSP4=" + }, + "tail": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "lineStyle": 1, + "points": "234:1823;519:987", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYbKCEsOHZ0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYbKCEsP+kM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYbKCEsQdPM=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYbKCEsRxi0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYbKCEsSIa0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYbKCEsTIOs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYbKCEsUoUc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYbKCUsVQTY=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYbKCUsWC+U=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYbKCUsX4lU=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYbKCUsYcdA=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RYo1sZrzoek=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RYo1sZr0KlU=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr1HjQ=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -256, + "top": 1584, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr2W5c=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 511.5, + "top": 2147.5, + "width": 116, + "height": 13, + "text": "检测其他测回合法性" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr3XYs=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -256, + "top": 1584, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RYo1sZr4E80=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -256, + "top": 1584, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 506.5, + "top": 2140.5, + "width": 127, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYo1sZr1HjQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RYo1sZr2W5c=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RYo1sZr3XYs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYo1sZr4E80=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RYo1sZr5VvI=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -128, + "top": 792, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RYo1sZr6Veg=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -128, + "top": 792, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RYo1sZr7Dv4=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -128, + "top": 792, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RYo1sZr8TjI=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -128, + "top": 792, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RYo1sZr9JcM=", + "_parent": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "model": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -128, + "top": 792, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 480, + "top": 2136, + "width": 179, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RYo1sZr0KlU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RYo1sZr5VvI=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RYo1sZr6Veg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RYo1sZr7Dv4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RYo1sZr8TjI=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RYo1sZr9JcM=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYqgkqO2MyI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO3BkI=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "font": "Arial;13;0", + "left": 379, + "top": 1979, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 1, + "text": "+无空测回" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO4B50=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 418, + "top": 1968, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO5Eu4=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 387, + "top": 2002, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO6Q3U=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 277, + "top": 1859, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO7HyE=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 287, + "top": 1851, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO8jmg=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 255, + "top": 1876, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO9LA0=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 539, + "top": 2100, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO+vZw=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 547, + "top": 2089, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYqgkqO/OQc=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 524, + "top": 2123, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYqgkqPAF8U=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaOzOcA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYqgkqPBTIk=", + "_parent": { + "$ref": "AAAAAAF5RYqgkqO2MyI=" + }, + "model": { + "$ref": "AAAAAAF5RYqgkaO0Gyw=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "tail": { + "$ref": "AAAAAAF5RYWBNj55r2s=" + }, + "lineStyle": 1, + "points": "248:1859;549:2135", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYqgkqO3BkI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYqgkqO4B50=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYqgkqO5Eu4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYqgkqO6Q3U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYqgkqO7HyE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYqgkqO8jmg=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYqgkqO9LA0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYqgkqO+vZw=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYqgkqO/OQc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYqgkqPAF8U=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYqgkqPBTIk=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RYuGzq0zcW0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq00uWc=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "font": "Arial;13;0", + "left": 2069, + "top": 2029, + "width": 137.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 1, + "text": "+发现有测回未通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq01kJ4=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2122, + "top": 2032, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq02LjQ=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2166, + "top": 2022, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq03E1k=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 683, + "top": 2123, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq044hU=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 685, + "top": 2109, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq05NGE=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 681, + "top": 2150, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq06xW4=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1912, + "top": 1041, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq07gn8=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1899, + "top": 1046, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RYuGzq08/Nc=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1938, + "top": 1031, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYuGzq09BO0=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0wl4I=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RYuGzq0+Fys=", + "_parent": { + "$ref": "AAAAAAF5RYuGzq0zcW0=" + }, + "model": { + "$ref": "AAAAAAF5RYuGza0xzjs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKuCwkzY630=" + }, + "tail": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "lineStyle": 1, + "points": "659:2146;2152:2032;1921:1019", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RYuGzq00uWc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RYuGzq01kJ4=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RYuGzq02LjQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RYuGzq03E1k=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RYuGzq044hU=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RYuGzq05NGE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RYuGzq06xW4=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RYuGzq07gn8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RYuGzq08/Nc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RYuGzq09BO0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RYuGzq0+Fys=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RY5M47VS/5M=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M47VTDWg=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "font": "Arial;13;0", + "left": 672, + "top": 1304, + "width": 85.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 1, + "text": "+全部通过检测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M47VUjKA=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 699, + "top": 1301, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVVTlw=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 743, + "top": 1309, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVWBPw=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 562, + "top": 2100, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVX2xY=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 549, + "top": 2095, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVYskw=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 588, + "top": 2110, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVZo0A=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 866, + "top": 507, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVaI9U=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 852, + "top": 507, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY5M5LVbdjo=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 894, + "top": 508, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY5M5LVcoPg=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVPReU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY5M5LVdBDo=", + "_parent": { + "$ref": "AAAAAAF5RY5M47VS/5M=" + }, + "model": { + "$ref": "AAAAAAF5RY5M4rVQGdM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RYo1sZrzoek=" + }, + "lineStyle": 1, + "points": "572:2135;886:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RY5M47VTDWg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RY5M47VUjKA=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RY5M5LVVTlw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RY5M5LVWBPw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RY5M5LVX2xY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RY5M5LVYskw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RY5M5LVZo0A=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RY5M5LVaI9U=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RY5M5LVbdjo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RY5M5LVcoPg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RY5M5LVdBDo=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RY+P3cq78x4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RY+P3cq8lrU=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3cq9UVw=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": 48, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3cq+inU=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "fillColor": "#8282ff", + "font": "Arial;13;1", + "left": 956.5, + "top": 1331.5, + "width": 101, + "height": 13, + "text": "switchState2Idle" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3cq/1Xo=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": 48, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RY+P3crAIoY=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -192, + "top": 48, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": 951.5, + "top": 1324.5, + "width": 111.8671875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RY+P3cq9UVw=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RY+P3cq+inU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RY+P3cq/1Xo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RY+P3crAIoY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RY+P3srBu6A=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RY+P3srCnMw=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RY+P3srDTrA=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RY+P3srE+P0=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RY+P3srFRq4=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "model": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "visible": false, + "fillColor": "#8282ff", + "font": "Arial;13;0", + "left": -96, + "top": 24, + "width": 10, + "height": 10 + } + ], + "fillColor": "#8282ff", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 928, + "top": 1320, + "width": 158, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RY+P3cq8lrU=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RY+P3srBu6A=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RY+P3srCnMw=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RY+P3srDTrA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RY+P3srE+P0=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RY+P3srFRq4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RY/lW9HunTY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hvi/A=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1133, + "top": 858, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hw6yM=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1119, + "top": 854, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hx5k8=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1162, + "top": 867, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9HyN1A=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1004, + "top": 1283, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9Hz89k=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 992, + "top": 1277, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H0J0I=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1029, + "top": 1295, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H1ErY=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1263, + "top": 433, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H23xw=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1249, + "top": 431, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RY/lW9H3Onc=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1290, + "top": 437, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY/lW9H46uE=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9Hrql4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RY/lW9H5+K0=", + "_parent": { + "$ref": "AAAAAAF5RY/lW9HunTY=" + }, + "model": { + "$ref": "AAAAAAF5RY/lW9HsN84=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "lineStyle": 1, + "points": "1011:1319;1285:419", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RY/lW9Hvi/A=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RY/lW9Hw6yM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RY/lW9Hx5k8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RY/lW9HyN1A=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RY/lW9Hz89k=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RY/lW9H0J0I=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RY/lW9H1ErY=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RY/lW9H23xw=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RY/lW9H3Onc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RY/lW9H46uE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RY/lW9H5+K0=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RZAQqNi9KXs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RZAQqNi+U5k=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNi/3K4=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -368, + "top": 1008, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNjAnDw=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 770, + "top": 1891.5, + "width": 90, + "height": 13, + "text": "查找待补测数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNjB74E=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -368, + "top": 1008, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZAQqNjCvdQ=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -368, + "top": 1008, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 765, + "top": 1884.5, + "width": 101, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZAQqNi/3K4=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RZAQqNjAnDw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RZAQqNjB74E=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZAQqNjCvdQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RZAQqNjDBLs=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -184, + "top": 504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RZAQqNjEOXs=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -184, + "top": 504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RZAQqNjF53M=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -184, + "top": 504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RZAQqNjGCMk=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -184, + "top": 504, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RZAQqNjHp8s=", + "_parent": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "model": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -184, + "top": 504, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 744, + "top": 1880, + "width": 142, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RZAQqNi+U5k=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RZAQqNjDBLs=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RZAQqNjEOXs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RZAQqNjF53M=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RZAQqNjGCMk=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RZAQqNjHp8s=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZDsue7ftRY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7gCik=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "font": "Arial;13;0", + "left": 885, + "top": 1606, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7h1YU=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 881, + "top": 1601, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7iQis=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 924, + "top": 1615, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7jDYo=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 814, + "top": 1843, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7kyAA=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 802, + "top": 1837, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7ll8Q=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 838, + "top": 1856, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7mtW0=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 977, + "top": 1368, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7n/oo=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 964, + "top": 1366, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZDsue7oje8=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1004, + "top": 1373, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZDsue7pTkA=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7cAPs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZDsue7qLNI=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7ftRY=" + }, + "model": { + "$ref": "AAAAAAF5RZDsue7dBLs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "tail": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "lineStyle": 1, + "points": "820:1879;1000:1355", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZDsue7gCik=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZDsue7h1YU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZDsue7iQis=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZDsue7jDYo=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZDsue7kyAA=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZDsue7ll8Q=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZDsue7mtW0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZDsue7n/oo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZDsue7oje8=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZDsue7pTkA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZDsue7qLNI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RZEXNfhC2ho=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RZEXNfhDeUQ=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhE1JY=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -48, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhF08s=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 813, + "top": 1443.5, + "width": 64, + "height": 13, + "text": "查找空数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhGZmc=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -48, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZEXNfhHCVU=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -304, + "top": -48, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 808, + "top": 1436.5, + "width": 75, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZEXNfhE1JY=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RZEXNfhF08s=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RZEXNfhGZmc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZEXNfhHCVU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RZEXNfhIvoY=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -152, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RZEXNvhJXeE=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -152, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RZEXNvhKzwc=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -152, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RZEXNvhLfS4=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -152, + "top": -24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RZEXNvhM3lA=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "model": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -152, + "top": -24, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 792, + "top": 1432, + "width": 106, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RZEXNfhDeUQ=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RZEXNfhIvoY=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RZEXNvhJXeE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RZEXNvhKzwc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RZEXNvhLfS4=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RZEXNvhM3lA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZE5Jvvk8+0=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vlq9g=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "font": "Arial;13;0", + "left": 804, + "top": 1665, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 1, + "text": "+无" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vm7FE=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 799, + "top": 1664, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vn7vY=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 843, + "top": 1668, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/voHLE=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 801, + "top": 1846, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vpdnU=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 788, + "top": 1842, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vqSPU=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 828, + "top": 1852, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vrD3M=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 826, + "top": 1485, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vslRk=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 812, + "top": 1487, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZE5J/vtins=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 854, + "top": 1483, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZE5J/vuuHI=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5Jvvh7eI=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZE5J/vvgB0=", + "_parent": { + "$ref": "AAAAAAF5RZE5Jvvk8+0=" + }, + "model": { + "$ref": "AAAAAAF5RZE5JvviTz0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "tail": { + "$ref": "AAAAAAF5RZAQqNi9KXs=" + }, + "lineStyle": 1, + "points": "815:1879;843:1467", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZE5J/vlq9g=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZE5J/vm7FE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZE5J/vn7vY=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZE5J/voHLE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZE5J/vpdnU=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZE5J/vqSPU=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZE5J/vrD3M=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZE5J/vslRk=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZE5J/vtins=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZE5J/vuuHI=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZE5J/vvgB0=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZGEZgj/XLs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkArOw=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "font": "Arial;13;0", + "left": 906, + "top": 1374, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 1, + "text": "+有" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkB2TY=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 907, + "top": 1362, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkChVo=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 933, + "top": 1399, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkDRjc=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 882, + "top": 1397, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkERZ0=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 877, + "top": 1385, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkFONE=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 894, + "top": 1422, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkGzgA=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 950, + "top": 1351, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkHVm4=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 940, + "top": 1341, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZGEZgkIGXU=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 969, + "top": 1371, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZGEZgkJQgE=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj8gpI=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZGEZgkK2ek=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj/XLs=" + }, + "model": { + "$ref": "AAAAAAF5RZGEZgj9p0E=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5RY+P3cq78x4=" + }, + "tail": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "lineStyle": 1, + "points": "870:1431;980:1355", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZGEZgkArOw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZGEZgkB2TY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZGEZgkChVo=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZGEZgkDRjc=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZGEZgkERZ0=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZGEZgkFONE=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZGEZgkGzgA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZGEZgkHVm4=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZGEZgkIGXU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZGEZgkJQgE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZGEZgkK2ek=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5RZHb+w38rbY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w39z3k=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "font": "Arial;13;0", + "left": 841, + "top": 954, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 1, + "text": "+无" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w3+E8c=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 836, + "top": 953, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w3/cnc=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 880, + "top": 955, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4A7LA=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 831, + "top": 1398, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4BF6A=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 818, + "top": 1395, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4COx0=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 858, + "top": 1403, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4DS1Q=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 871, + "top": 510, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4Efb8=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 858, + "top": 511, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5RZHb+w4Fx+M=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 899, + "top": 507, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZHb+w4GxWE=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g35LNk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5RZHb+w4HFa8=", + "_parent": { + "$ref": "AAAAAAF5RZHb+w38rbY=" + }, + "model": { + "$ref": "AAAAAAF5RZHb+g36Mvo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5RZEXNfhC2ho=" + }, + "lineStyle": 1, + "points": "845:1431;888:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5RZHb+w39z3k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZHb+w3+E8c=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZHb+w3/cnc=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5RZHb+w4A7LA=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5RZHb+w4BF6A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5RZHb+w4COx0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5RZHb+w4DS1Q=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5RZHb+w4Efb8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5RZHb+w4Fx+M=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5RZHb+w4GxWE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5RZHb+w4HFa8=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5RZ6XBji6Gjs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5RZ6XBji742g=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji84Lo=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -672, + "top": 880, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji96yI=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "font": "Arial;13;1", + "left": 776, + "top": 2035.5, + "width": 79, + "height": 13, + "text": "doMoveBack" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji+VvE=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -672, + "top": 880, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5RZ6XBji/AjM=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -672, + "top": 880, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 771, + "top": 2028.5, + "width": 90.18994140625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5RZ6XBji84Lo=" + }, + "nameLabel": { + "$ref": "AAAAAAF5RZ6XBji96yI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5RZ6XBji+VvE=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5RZ6XBji/AjM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5RZ6XBjjASWk=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -336, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5RZ6XBzjBtGc=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -336, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5RZ6XBzjCvBw=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -336, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5RZ6XBzjD9LY=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -336, + "top": 440, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5RZ6XBzjEkZ0=", + "_parent": { + "$ref": "AAAAAAF5RZ6XBji6Gjs=" + }, + "model": { + "$ref": "AAAAAAF5RZ6XBTi4yu4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -336, + "top": 440, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 752, + "top": 2024, + "width": 127, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5RZ6XBji742g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5RZ6XBjjASWk=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5RZ6XBzjBtGc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5RZ6XBzjCvBw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5RZ6XBzjD9LY=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5RZ6XBzjEkZ0=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Sr6mnFdIbRQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Sr6mnFdJQes=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr6mnFdKY5o=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdJQes=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -480, + "top": 96, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr6mnFdL8fY=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdJQes=" + }, + "font": "Arial;13;1", + "left": 414, + "top": 1723.5, + "width": 72, + "height": 13, + "text": "doSurveyor" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr6mnFdMXvo=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdJQes=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -480, + "top": 96, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr6mnFdNGZc=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdJQes=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -480, + "top": 96, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 409, + "top": 1716.5, + "width": 82.24267578125, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Sr6mnFdKY5o=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Sr6mnFdL8fY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Sr6mnFdMXvo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Sr6mnFdNGZc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Sr6mnVdOubo=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Sr6mnVdPN3o=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Sr6mnVdQi1o=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Sr6mnVdRDJw=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 48, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Sr6mnVdS2zY=", + "_parent": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 48, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 392, + "top": 1712, + "width": 116, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Sr6mnFdJQes=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Sr6mnVdOubo=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Sr6mnVdPN3o=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Sr6mnVdQi1o=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Sr6mnVdRDJw=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Sr6mnVdS2zY=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Sr+CM2cB5us=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Sr+CM2cCGRA=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr+CM2cDzn0=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cCGRA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1104, + "top": -480, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr+CNGcEr4Q=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cCGRA=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 303.5, + "top": 1531.5, + "width": 194, + "height": 13, + "text": "检测其他测回是否有正在测量数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr+CNGcFDPg=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cCGRA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1104, + "top": -480, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sr+CNGcG0MQ=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cCGRA=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1104, + "top": -480, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 298.5, + "top": 1524.5, + "width": 205, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Sr+CM2cDzn0=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Sr+CNGcEr4Q=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Sr+CNGcFDPg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Sr+CNGcG0MQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Sr+CNGcHJ2Y=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -552, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Sr+CNGcILlE=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -552, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Sr+CNGcJ/gk=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -552, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Sr+CNGcKL4U=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -552, + "top": -240, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Sr+CNGcLiZA=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "model": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -552, + "top": -240, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 256, + "top": 1520, + "width": 289, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Sr+CM2cCGRA=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Sr+CNGcHJ2Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Sr+CNGcILlE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Sr+CNGcJ/gk=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Sr+CNGcKL4U=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Sr+CNGcLiZA=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsC4MnfxyFI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnft0S4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3fycW0=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnft0S4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 409, + "top": 1630, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3fz5ec=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnft0S4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 394, + "top": 1634, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f06c0=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnft0S4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 438, + "top": 1623, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f1ynk=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfuteg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 423, + "top": 1683, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f212E=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfuteg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 409, + "top": 1684, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f3s5c=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfuteg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 450, + "top": 1680, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f4ln4=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfv/lw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 396, + "top": 1577, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f5q6U=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfv/lw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 384, + "top": 1583, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsC4M3f6cyo=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfv/lw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 422, + "top": 1566, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsC4M3f7Urg=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfuteg=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsC4M3f8wRw=", + "_parent": { + "$ref": "AAAAAAF5SsC4MnfxyFI=" + }, + "model": { + "$ref": "AAAAAAF5SsC4Mnfv/lw=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "tail": { + "$ref": "AAAAAAF5Sr6mnFdIbRQ=" + }, + "lineStyle": 1, + "points": "444:1711;405:1555", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsC4M3fycW0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsC4M3fz5ec=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsC4M3f06c0=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsC4M3f1ynk=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsC4M3f212E=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsC4M3f3s5c=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsC4M3f4ln4=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsC4M3f5q6U=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsC4M3f6cyo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsC4M3f7Urg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsC4M3f8wRw=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5SsEjzYKBxwU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5SsEjzYKCPow=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5SsEjzYKD6b8=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKCPow=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -976, + "top": -688, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsEjzYKE6p4=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKCPow=" + }, + "fillColor": "#ffadad", + "font": "Arial;13;1", + "left": 458, + "top": 1363.5, + "width": 129, + "height": 13, + "text": "提示用户是否删除数据" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsEjzYKFVEY=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKCPow=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -976, + "top": -688, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsEjzoKGCs4=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKCPow=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -976, + "top": -688, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": 453, + "top": 1356.5, + "width": 140, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsEjzYKD6b8=" + }, + "nameLabel": { + "$ref": "AAAAAAF5SsEjzYKE6p4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5SsEjzYKFVEY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsEjzoKGCs4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5SsEjzoKHLwk=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -488, + "top": -344, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5SsEjzoKIZyQ=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -488, + "top": -344, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5SsEjzoKJIsU=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -488, + "top": -344, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5SsEjzoKKdw8=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -488, + "top": -344, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5SsEjzoKLM3w=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "model": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "visible": false, + "fillColor": "#ffadad", + "font": "Arial;13;0", + "left": -488, + "top": -344, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffadad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 424, + "top": 1352, + "width": 197, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5SsEjzYKCPow=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5SsEjzoKHLwk=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5SsEjzoKIZyQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5SsEjzoKJIsU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5SsEjzoKKdw8=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5SsEjzoKLM3w=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsGTy4vXB4s=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsGTyovTQIg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vYy/Y=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTyovTQIg=" + }, + "font": "Arial;13;0", + "left": 425, + "top": 1438, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "edgePosition": 1, + "text": "+有数据" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vZaQY=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTyovTQIg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 436, + "top": 1429, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4va5YE=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTyovTQIg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 473, + "top": 1455, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vbO0E=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vUxm0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 416, + "top": 1483, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vcDBs=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vUxm0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 406, + "top": 1473, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vdZI0=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vUxm0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 435, + "top": 1502, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4veUmo=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vVaZ0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 481, + "top": 1393, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vfcb0=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vVaZ0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 469, + "top": 1387, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsGTy4vgVyo=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vVaZ0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 506, + "top": 1405, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsGTy4vhc58=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vUxm0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsGTy4vi4qg=", + "_parent": { + "$ref": "AAAAAAF5SsGTy4vXB4s=" + }, + "model": { + "$ref": "AAAAAAF5SsGTy4vVaZ0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "tail": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "lineStyle": 1, + "points": "413:1519;509:1387", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsGTy4vYy/Y=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsGTy4vZaQY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsGTy4va5YE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsGTy4vbO0E=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsGTy4vcDBs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsGTy4vdZI0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsGTy4veUmo=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsGTy4vfcb0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsGTy4vgVyo=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsGTy4vhc58=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsGTy4vi4qg=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsIvCJpX8B4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pTO8k=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpYDgw=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pTO8k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 691, + "top": 909, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpZ1dU=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pTO8k=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 677, + "top": 903, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpaoIQ=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pTO8k=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 718, + "top": 920, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpb9qM=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pUHxM=" + }, + "font": "Arial;13;0", + "left": 488, + "top": 1315, + "width": 72.22798156738281, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "edgePosition": 2, + "text": "+忽略or取消" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpcPdE=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pUHxM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 513, + "top": 1308, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpd7pc=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pUHxM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 548, + "top": 1329, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpeUhk=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pVSwc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 858, + "top": 503, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpfq/M=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pVSwc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 845, + "top": 500, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsIvCJpgY1s=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pVSwc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 885, + "top": 509, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsIvCJphgMc=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pUHxM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsIvCJpi0FU=", + "_parent": { + "$ref": "AAAAAAF5SsIvCJpX8B4=" + }, + "model": { + "$ref": "AAAAAAF5SsIvB5pVSwc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "lineStyle": 1, + "points": "529:1351;882:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsIvCJpYDgw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsIvCJpZ1dU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsIvCJpaoIQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsIvCJpb9qM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsIvCJpcPdE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsIvCJpd7pc=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsIvCJpeUhk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsIvCJpfq/M=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsIvCJpgY1s=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsIvCJphgMc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsIvCJpi0FU=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5SsKfZ6cz6GA=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5SsKfZ6c0cw0=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5SsKfZ6c1If0=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6c0cw0=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1504, + "top": -1264, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsKfZ6c22jM=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6c0cw0=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 188, + "top": 1195.5, + "width": 62, + "height": 13, + "text": "执行测量" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsKfZ6c3y80=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6c0cw0=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1504, + "top": -1264, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsKfZ6c4/6w=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6c0cw0=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -1504, + "top": -1264, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 183, + "top": 1188.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsKfZ6c1If0=" + }, + "nameLabel": { + "$ref": "AAAAAAF5SsKfZ6c22jM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5SsKfZ6c3y80=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsKfZ6c4/6w=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5SsKfZ6c53s4=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -752, + "top": -632, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5SsKfZ6c6ce4=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -752, + "top": -632, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5SsKfZ6c7vSY=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -752, + "top": -632, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5SsKfZ6c8vrI=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -752, + "top": -632, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5SsKfZ6c9w5g=", + "_parent": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "model": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": -752, + "top": -632, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 168, + "top": 1184, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5SsKfZ6c0cw0=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5SsKfZ6c53s4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5SsKfZ6c6ce4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5SsKfZ6c7vSY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5SsKfZ6c8vrI=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5SsKfZ6c9w5g=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsLOnqvSnF4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvOHTI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOnqvT9Zc=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvOHTI=" + }, + "font": "Arial;13;0", + "left": 272, + "top": 1370, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "edgePosition": 1, + "text": "+无数据" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOnqvUkow=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvOHTI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 282, + "top": 1377, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOnqvVLTQ=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvOHTI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 322, + "top": 1355, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOnqvWnnM=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvP3jk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 364, + "top": 1497, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOnqvXr5I=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvP3jk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 351, + "top": 1501, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOnqvYxHA=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvP3jk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 390, + "top": 1488, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOn6vZ9lI=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvQ0Oc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 227, + "top": 1242, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOn6vaP/I=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvQ0Oc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 216, + "top": 1251, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLOn6vbXrc=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvQ0Oc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 249, + "top": 1226, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsLOn6vcdQk=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvP3jk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsLOn6vdxGs=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvSnF4=" + }, + "model": { + "$ref": "AAAAAAF5SsLOnqvQ0Oc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "tail": { + "$ref": "AAAAAAF5Sr+CM2cB5us=" + }, + "lineStyle": 1, + "points": "390:1519;228:1219", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsLOnqvT9Zc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsLOnqvUkow=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsLOnqvVLTQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsLOnqvWnnM=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsLOnqvXr5I=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsLOnqvYxHA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsLOn6vZ9lI=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsLOn6vaP/I=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsLOn6vbXrc=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsLOn6vcdQk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsLOn6vdxGs=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsLnBK6bZAc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsLnA66XUCE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6cpAA=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnA66XUCE=" + }, + "font": "Arial;13;0", + "left": 333, + "top": 1292, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "edgePosition": 1, + "text": "+确定删除" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6d5AU=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnA66XUCE=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 355, + "top": 1305, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6eFBA=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnA66XUCE=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 377, + "top": 1265, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6fMJY=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6Y5d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 459, + "top": 1345, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6gP4A=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6Y5d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 450, + "top": 1356, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6hs3M=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6Y5d4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 476, + "top": 1323, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6ibt8=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6ZnVU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 266, + "top": 1238, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6j9qo=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6ZnVU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 262, + "top": 1251, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsLnBK6kw2A=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6ZnVU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 275, + "top": 1212, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsLnBK6lciw=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6Y5d4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsLnBK6mW+g=", + "_parent": { + "$ref": "AAAAAAF5SsLnBK6bZAc=" + }, + "model": { + "$ref": "AAAAAAF5SsLnBK6ZnVU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "tail": { + "$ref": "AAAAAAF5SsEjzYKBxwU=" + }, + "lineStyle": 1, + "points": "489:1351;251:1219", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsLnBK6cpAA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsLnBK6d5AU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsLnBK6eFBA=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsLnBK6fMJY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsLnBK6gP4A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsLnBK6hs3M=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsLnBK6ibt8=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsLnBK6j9qo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsLnBK6kw2A=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsLnBK6lciw=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsLnBK6mW+g=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5Ssd41L4Ykm8=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Ssd4074UW6o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4Zqt8=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd4074UW6o=" + }, + "font": "Arial;13;0", + "left": 298, + "top": 715, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "edgePosition": 1, + "text": "+测量成功" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4aA68=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd4074UW6o=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 312, + "top": 711, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4bzG4=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd4074UW6o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 356, + "top": 722, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4cBd0=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4V+18=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 215, + "top": 1148, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4dOJQ=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4V+18=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 202, + "top": 1142, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4eN6A=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4V+18=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 240, + "top": 1159, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4fb84=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4WIjg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 440, + "top": 282, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4gSW0=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4WIjg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 427, + "top": 281, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ssd41L4hw20=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4WIjg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 468, + "top": 285, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Ssd41L4iA10=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4V+18=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Ssd41L4jXng=", + "_parent": { + "$ref": "AAAAAAF5Ssd41L4Ykm8=" + }, + "model": { + "$ref": "AAAAAAF5Ssd41L4WIjg=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJ6ahiPXyXI=" + }, + "tail": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "lineStyle": 1, + "points": "223:1183;462:267", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5Ssd41L4Zqt8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5Ssd41L4aA68=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Ssd41L4bzG4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5Ssd41L4cBd0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5Ssd41L4dOJQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5Ssd41L4eN6A=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5Ssd41L4fb84=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5Ssd41L4gSW0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5Ssd41L4hw20=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5Ssd41L4iA10=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5Ssd41L4jXng=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Sseu4cD3uPk=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Sseu4cD4dEc=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Sseu4sD5D+g=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD4dEc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1472, + "top": -1600, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sseu4sD6WNI=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD4dEc=" + }, + "font": "Arial;13;1", + "left": 340, + "top": 1067.5, + "width": 98, + "height": 13, + "text": "SurveyorFailure" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sseu4sD7TeQ=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD4dEc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1472, + "top": -1600, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sseu4sD8OGM=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD4dEc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1472, + "top": -1600, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 335, + "top": 1060.5, + "width": 108.9853515625, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Sseu4sD5D+g=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Sseu4sD6WNI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Sseu4sD7TeQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Sseu4sD8OGM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Sseu4sD98rM=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -736, + "top": -800, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Sseu4sD+mh8=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -736, + "top": -800, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Sseu4sD/yw4=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -736, + "top": -800, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Sseu4sEAhqQ=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -736, + "top": -800, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Sseu4sEB2Lc=", + "_parent": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "model": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -736, + "top": -800, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 312, + "top": 1056, + "width": 154, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Sseu4cD4dEc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Sseu4sD98rM=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Sseu4sD+mh8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Sseu4sD/yw4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Sseu4sEAhqQ=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Sseu4sEB2Lc=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsfL8MfWulU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fSWbs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfXyQI=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fSWbs=" + }, + "font": "Arial;13;0", + "left": 264, + "top": 1119, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "edgePosition": 1, + "text": "+测量失败" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfYdR0=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fSWbs=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 284, + "top": 1107, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfZubw=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fSWbs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 312, + "top": 1142, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfaQ2g=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fTiS4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 253, + "top": 1149, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfbsfE=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fTiS4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 247, + "top": 1137, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfcKqA=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fTiS4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 266, + "top": 1173, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfdMu0=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fU9Fc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 334, + "top": 1088, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MfexH0=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fU9Fc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 324, + "top": 1079, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsfL8MffFqI=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fU9Fc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 354, + "top": 1108, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsfL8Mfg/Q0=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fTiS4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsfL8MfhnlI=", + "_parent": { + "$ref": "AAAAAAF5SsfL8MfWulU=" + }, + "model": { + "$ref": "AAAAAAF5SsfL78fU9Fc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Sseu4cD3uPk=" + }, + "tail": { + "$ref": "AAAAAAF5SsKfZ6cz6GA=" + }, + "lineStyle": 1, + "points": "242:1183;364:1091", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsfL8MfXyQI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsfL8MfYdR0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsfL8MfZubw=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsfL8MfaQ2g=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsfL8MfbsfE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsfL8MfcKqA=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsfL8MfdMu0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsfL8MfexH0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsfL8MffFqI=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsfL8Mfg/Q0=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsfL8MfhnlI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Sst98wwqqgM=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Sst98wwrk5U=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Sst98wwsBT0=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwrk5U=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 48, + "top": -160, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sst98wwtbtQ=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwrk5U=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 1652, + "top": 51.5, + "width": 62, + "height": 13, + "text": "是否闭合" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sst98wwumLc=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwrk5U=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 48, + "top": -160, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Sst98wwvQ7M=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwrk5U=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 48, + "top": -160, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 1647, + "top": 44.5, + "width": 72, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Sst98wwsBT0=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Sst98wwtbtQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Sst98wwumLc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Sst98wwvQ7M=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Sst98www8Oc=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 24, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Sst98wwx3u0=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 24, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Sst98wwya8E=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 24, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Sst98wwzlK8=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 24, + "top": -80, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Sst98ww0Wjc=", + "_parent": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "model": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 24, + "top": -80, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1632, + "top": 40, + "width": 102, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Sst98wwrk5U=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Sst98www8Oc=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Sst98wwx3u0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Sst98wwya8E=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Sst98wwzlK8=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Sst98ww0Wjc=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsvDEBJ5KNQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ10hk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBJ65LU=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ10hk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1525, + "top": 68, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBJ7LZg=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ10hk=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1522, + "top": 53, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBJ8W1Y=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ10hk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1530, + "top": 97, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBJ9rec=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ2t9o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1447, + "top": 85, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBJ+YlY=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ2t9o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1446, + "top": 71, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBJ/9rs=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ2t9o=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1448, + "top": 112, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBKANc8=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ3GSY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1602, + "top": 52, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDEBKBIh8=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ3GSY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1597, + "top": 40, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsvDERKCEpk=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ3GSY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1612, + "top": 78, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsvDERKDUNc=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ2t9o=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsvDERKE66g=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ5KNQ=" + }, + "model": { + "$ref": "AAAAAAF5SsvDEBJ3GSY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "tail": { + "$ref": "AAAAAAF5QJ8m8Sf6ofY=" + }, + "lineStyle": 1, + "points": "1425:111;1631:68", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsvDEBJ65LU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsvDEBJ7LZg=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsvDEBJ8W1Y=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsvDEBJ9rec=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsvDEBJ+YlY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsvDEBJ/9rs=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsvDEBKANc8=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsvDEBKBIh8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsvDERKCEpk=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsvDERKDUNc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsvDERKE66g=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Ssw/NBbRxlk=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Ssw/NBbSF2M=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Ssw/NBbTP+M=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbSF2M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1440, + "top": 192, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Ssw/NBbUxMs=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbSF2M=" + }, + "font": "Arial;13;1", + "left": 1249, + "top": 251.5, + "width": 124, + "height": 13, + "text": "checkHalfCycleZero" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Ssw/NBbVQpo=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbSF2M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1440, + "top": 192, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Ssw/NBbW1cU=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbSF2M=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -1440, + "top": 192, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1244, + "top": 244.5, + "width": 134.28076171875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Ssw/NBbTP+M=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Ssw/NBbUxMs=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Ssw/NBbVQpo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Ssw/NBbW1cU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Ssw/NBbXko4=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -720, + "top": 96, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Ssw/NBbYUF0=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -720, + "top": 96, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Ssw/NBbZSlY=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -720, + "top": 96, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Ssw/NBbaO/g=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -720, + "top": 96, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Ssw/NBbbK8k=", + "_parent": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "model": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -720, + "top": 96, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1216, + "top": 240, + "width": 190, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Ssw/NBbSF2M=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Ssw/NBbXko4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Ssw/NBbYUF0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Ssw/NBbZSlY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Ssw/NBbaO/g=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Ssw/NBbbK8k=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SsxY9RsnmvY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BsjL0w=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9Rso3zw=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BsjL0w=" + }, + "font": "Arial;13;0", + "left": 1493, + "top": 164, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "edgePosition": 1, + "text": "+否" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9RspvS0=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BsjL0w=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1510, + "top": 177, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9Rsq3L8=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BsjL0w=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1488, + "top": 137, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9Rsrf8M=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BskgpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1633, + "top": 94, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9RssvXQ=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BskgpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1637, + "top": 107, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9Rstlgw=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BskgpI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1624, + "top": 68, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9RsuHms=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9Bsl5Tg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1372, + "top": 233, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9RsvAmg=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9Bsl5Tg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1381, + "top": 244, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SsxY9RswFu4=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9Bsl5Tg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1356, + "top": 211, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsxY9Rsx3zc=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9BskgpI=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SsxY9Rsy0lU=", + "_parent": { + "$ref": "AAAAAAF5SsxY9RsnmvY=" + }, + "model": { + "$ref": "AAAAAAF5SsxY9Bsl5Tg=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "tail": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "lineStyle": 1, + "points": "1649:75;1343:239", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SsxY9Rso3zw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsxY9RspvS0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsxY9Rsq3L8=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SsxY9Rsrf8M=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SsxY9RssvXQ=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SsxY9Rstlgw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SsxY9RsuHms=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SsxY9RsvAmg=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SsxY9RswFu4=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SsxY9Rsx3zc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SsxY9Rsy0lU=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5SsyaiR+SygU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5SsyaiR+Tni4=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5SsyaiR+UDd8=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+Tni4=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 256, + "top": -288, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsyaiR+VLzI=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+Tni4=" + }, + "fillColor": "#ffff91", + "font": "Arial;13;1", + "left": 1775.5, + "top": 147.5, + "width": 77, + "height": 13, + "text": "执行归零检测" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsyaiR+WGNM=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+Tni4=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 256, + "top": -288, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5SsyaiR+XOgU=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+Tni4=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 256, + "top": -288, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 1770.5, + "top": 140.5, + "width": 88, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5SsyaiR+UDd8=" + }, + "nameLabel": { + "$ref": "AAAAAAF5SsyaiR+VLzI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5SsyaiR+WGNM=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SsyaiR+XOgU=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5SsyaiR+YmEc=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 128, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5SsyaiR+ZFcg=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 128, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5SsyaiR+aG70=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 128, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5SsyaiR+bvEY=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 128, + "top": -144, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5SsyaiR+c1cI=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "model": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "visible": false, + "fillColor": "#ffff91", + "font": "Arial;13;0", + "left": 128, + "top": -144, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffff91", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1752, + "top": 136, + "width": 124, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5SsyaiR+Tni4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5SsyaiR+YmEc=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5SsyaiR+ZFcg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5SsyaiR+aG70=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5SsyaiR+bvEY=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5SsyaiR+c1cI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5SszpXCjo1EY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjkGRI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXCjpTBg=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjkGRI=" + }, + "font": "Arial;13;0", + "left": 1745, + "top": 86, + "width": 20.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "edgePosition": 1, + "text": "+是" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXCjqUQ0=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjkGRI=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1764, + "top": 74, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjrtE4=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjkGRI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1738, + "top": 111, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjsrPY=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjl/+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1736, + "top": 72, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjtl3A=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjl/+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1746, + "top": 63, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjuzIY=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjl/+8=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1716, + "top": 91, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjvn8g=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjmncs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1776, + "top": 101, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjwGS4=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjmncs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1782, + "top": 89, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5SszpXSjx7DE=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjmncs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1763, + "top": 126, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SszpXSjytaQ=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjl/+8=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5SszpXSjzLNw=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjo1EY=" + }, + "model": { + "$ref": "AAAAAAF5SszpXCjmncs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "tail": { + "$ref": "AAAAAAF5Sst98wwqqgM=" + }, + "lineStyle": 1, + "points": "1707:75;1788:135", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5SszpXCjpTBg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5SszpXCjqUQ0=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5SszpXSjrtE4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5SszpXSjsrPY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5SszpXSjtl3A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5SszpXSjuzIY=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5SszpXSjvn8g=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5SszpXSjwGS4=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5SszpXSjx7DE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5SszpXSjytaQ=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5SszpXSjzLNw=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5Ss0jcC4eMnU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4aijg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4f1SI=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4aijg=" + }, + "font": "Arial;13;0", + "left": 1561, + "top": 210, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "edgePosition": 1, + "text": "+成功" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4gpjw=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4aijg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1580, + "top": 225, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4hyOQ=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4aijg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1570, + "top": 181, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4ik1U=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4bSQM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1728, + "top": 179, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4j7WE=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4bSQM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1729, + "top": 193, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4kJQ0=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4bSQM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1727, + "top": 152, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4lZO0=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4cI98=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1425, + "top": 242, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4mJoI=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4cI98=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1430, + "top": 254, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss0jcC4nP2o=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4cI98=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1415, + "top": 216, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Ss0jcC4oHMs=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4bSQM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Ss0jcC4pyOo=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4eMnU=" + }, + "model": { + "$ref": "AAAAAAF5Ss0jcC4cI98=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Ssw/NBbRxlk=" + }, + "tail": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "lineStyle": 1, + "points": "1751:166;1397:239", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5Ss0jcC4f1SI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5Ss0jcC4gpjw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Ss0jcC4hyOQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5Ss0jcC4ik1U=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5Ss0jcC4j7WE=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5Ss0jcC4kJQ0=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5Ss0jcC4lZO0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5Ss0jcC4mJoI=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5Ss0jcC4nP2o=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5Ss0jcC4oHMs=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5Ss0jcC4pyOo=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Ss1QmDKthXI=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Ss1QmDKuZC4=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Ss1QmDKvWlI=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKuZC4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 80, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Ss1QmDKwG90=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKuZC4=" + }, + "font": "Arial;13;1", + "left": 1805, + "top": 379.5, + "width": 105, + "height": 13, + "text": "isReady2CCheck" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Ss1QmDKxdQY=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKuZC4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 80, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Ss1QmDKy1Jk=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKuZC4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -240, + "top": 80, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 1800, + "top": 372.5, + "width": 115.498046875, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Ss1QmDKvWlI=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Ss1QmDKwG90=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Ss1QmDKxdQY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Ss1QmDKy1Jk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Ss1QmDKzPd4=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -120, + "top": 40, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Ss1QmDK0rgM=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -120, + "top": 40, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Ss1QmDK1URs=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -120, + "top": 40, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Ss1QmDK27BM=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -120, + "top": 40, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Ss1QmTK3KzQ=", + "_parent": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "model": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": -120, + "top": 40, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1776, + "top": 368, + "width": 163, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Ss1QmDKuZC4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Ss1QmDKzPd4=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Ss1QmDK0rgM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Ss1QmDK1URs=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Ss1QmDK27BM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Ss1QmTK3KzQ=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5Ss1sYzc57Aw=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc1nBg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzc6gkg=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc1nBg=" + }, + "font": "Arial;13;0", + "left": 1826, + "top": 260, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "edgePosition": 1, + "text": "+未成功" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzc7Ydc=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc1nBg=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1864, + "top": 257, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzc8aaQ=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc1nBg=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1820, + "top": 265, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzc9oVQ=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc28DU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1835, + "top": 187, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzc+1mo=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc28DU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1849, + "top": 187, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzc/qfo=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc28DU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1807, + "top": 188, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzdAwEk=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc3JbA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1863, + "top": 332, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzdBh5I=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc3JbA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1876, + "top": 327, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Ss1sYzdCSbM=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc3JbA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1837, + "top": 342, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Ss1sYzdDZ80=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc28DU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Ss1sYzdEJ2M=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc57Aw=" + }, + "model": { + "$ref": "AAAAAAF5Ss1sYzc3JbA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "tail": { + "$ref": "AAAAAAF5SsyaiR+SygU=" + }, + "lineStyle": 1, + "points": "1816:171;1854:367", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5Ss1sYzc6gkg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5Ss1sYzc7Ydc=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Ss1sYzc8aaQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5Ss1sYzc9oVQ=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5Ss1sYzc+1mo=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5Ss1sYzc/qfo=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5Ss1sYzdAwEk=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5Ss1sYzdBh5I=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5Ss1sYzdCSbM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5Ss1sYzdDZ80=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5Ss1sYzdEJ2M=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5StBNjXab2vs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaXraA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnack3k=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaXraA=" + }, + "font": "Arial;13;0", + "left": 2070, + "top": 347, + "width": 59.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "edgePosition": 1, + "text": "+满足条件" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnadVQY=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaXraA=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2098, + "top": 332, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnaesNQ=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaXraA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2102, + "top": 376, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnafXzY=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaYthc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1963, + "top": 356, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnagLn4=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaYthc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1965, + "top": 342, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnah5RQ=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaYthc=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1961, + "top": 384, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnaisDA=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaZel4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2236, + "top": 337, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnaj34U=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaZel4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2232, + "top": 324, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StBNjnakOhM=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaZel4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2242, + "top": 364, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StBNjXab2vs=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StBNjnalJvg=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaYthc=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StBNjnamkmI=", + "_parent": { + "$ref": "AAAAAAF5StBNjXab2vs=" + }, + "model": { + "$ref": "AAAAAAF5StBNjXaZel4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5nMr01oLTI=" + }, + "tail": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "lineStyle": 1, + "points": "1939:379;2263:357", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5StBNjnack3k=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5StBNjnadVQY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StBNjnaesNQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5StBNjnafXzY=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5StBNjnagLn4=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5StBNjnah5RQ=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5StBNjnaisDA=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5StBNjnaj34U=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5StBNjnakOhM=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5StBNjnalJvg=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5StBNjnamkmI=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5StIJ55ESsdQ=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5StIJ6JETau4=", + "_parent": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5StIJ6JEUhEM=", + "_parent": { + "$ref": "AAAAAAF5StIJ6JETau4=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5StIJ6JEVqnE=", + "_parent": { + "$ref": "AAAAAAF5StIJ6JETau4=" + }, + "font": "Arial;13;1", + "left": 2051, + "top": 523.5, + "width": 96, + "height": 13, + "text": "doRecordClean" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5StIJ6JEWP7E=", + "_parent": { + "$ref": "AAAAAAF5StIJ6JETau4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5StIJ6JEXgV0=", + "_parent": { + "$ref": "AAAAAAF5StIJ6JETau4=" + }, + "visible": false, + "font": "Arial;13;0", + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 2046, + "top": 516.5, + "width": 106.07177734375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5StIJ6JEUhEM=" + }, + "nameLabel": { + "$ref": "AAAAAAF5StIJ6JEVqnE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5StIJ6JEWP7E=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StIJ6JEXgV0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5StIJ6JEYF5o=", + "_parent": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5StIJ6JEZA8U=", + "_parent": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5StIJ6JEaYwU=", + "_parent": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5StIJ6JEb/UM=", + "_parent": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5StIJ6JEcyow=", + "_parent": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "model": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 2024, + "top": 512, + "width": 150, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5StIJ6JETau4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5StIJ6JEYF5o=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5StIJ6JEZA8U=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5StIJ6JEaYwU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5StIJ6JEb/UM=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5StIJ6JEcyow=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5StIhp5XCuNU=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW+/2s=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XDSVA=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW+/2s=" + }, + "font": "Arial;13;0", + "left": 1961, + "top": 438, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "edgePosition": 1, + "text": "+不满足" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XEOe8=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW+/2s=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1992, + "top": 425, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XFIgE=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW+/2s=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1969, + "top": 463, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XGV44=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW/3D0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1916, + "top": 397, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XH9Wk=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW/3D0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1925, + "top": 387, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XIoUY=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW/3D0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1899, + "top": 418, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XJabQ=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppXAozs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2053, + "top": 478, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XKQI8=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppXAozs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2058, + "top": 466, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StIhp5XLdHE=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppXAozs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2043, + "top": 504, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StIhp5XMnHk=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppW/3D0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StIhp5XNKZI=", + "_parent": { + "$ref": "AAAAAAF5StIhp5XCuNU=" + }, + "model": { + "$ref": "AAAAAAF5StIhppXAozs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "tail": { + "$ref": "AAAAAAF5Ss1QmDKthXI=" + }, + "lineStyle": 1, + "points": "1887:403;2068:511", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5StIhp5XDSVA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5StIhp5XEOe8=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StIhp5XFIgE=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5StIhp5XGV44=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5StIhp5XH9Wk=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5StIhp5XIoUY=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5StIhp5XJabQ=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5StIhp5XKQI8=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5StIhp5XLdHE=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5StIhp5XMnHk=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5StIhp5XNKZI=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5StWKjad/ao4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad7sNs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjaeAOMw=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad7sNs=" + }, + "font": "Arial;13;0", + "left": 1526, + "top": 470, + "width": 33.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "edgePosition": 1, + "text": "+完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjaeB8T4=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad7sNs=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1538, + "top": 485, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeCMfI=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad7sNs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1549, + "top": 441, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeD8dI=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad8hyI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1722, + "top": 513, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeENZo=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad8hyI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1716, + "top": 525, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeFObw=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad8hyI=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1732, + "top": 487, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeGRb0=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad96kQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1363, + "top": 427, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeHI70=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad96kQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1362, + "top": 441, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StWKjqeIy1Y=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad96kQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1365, + "top": 399, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StWKjad/ao4=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StWKjqeJDvE=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad8hyI=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StWKjqeKjN0=", + "_parent": { + "$ref": "AAAAAAF5StWKjad/ao4=" + }, + "model": { + "$ref": "AAAAAAF5StWKjad96kQ=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5P5/CAk98zZc=" + }, + "tail": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "lineStyle": 1, + "points": "1751:511;1342:413", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5StWKjaeAOMw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5StWKjaeB8T4=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StWKjqeCMfI=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5StWKjqeD8dI=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5StWKjqeENZo=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5StWKjqeFObw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5StWKjqeGRb0=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5StWKjqeHI70=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5StWKjqeIy1Y=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5StWKjqeJDvE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5StWKjqeKjN0=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5StaqW9rGSo4=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5StaqW9rHsAM=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5StaqW9rIMvI=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rHsAM=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -448, + "top": -496, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5StaqW9rJ3VU=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rHsAM=" + }, + "fillColor": "#ffc1ad", + "font": "Arial;13;1", + "left": 1738.5, + "top": 715.5, + "width": 168, + "height": 13, + "text": "用户选择是否跳转到其他测回" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5StaqW9rK5Uk=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rHsAM=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -448, + "top": -496, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5StaqW9rLlM4=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rHsAM=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -448, + "top": -496, + "height": 13, + "horizontalAlignment": 1 + } + ], + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": 1733.5, + "top": 708.5, + "width": 179, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5StaqW9rIMvI=" + }, + "nameLabel": { + "$ref": "AAAAAAF5StaqW9rJ3VU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5StaqW9rK5Uk=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StaqW9rLlM4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5StaqW9rMapE=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -224, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5StaqW9rNzzg=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -224, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5StaqW9rON6o=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -224, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5StaqW9rPWX8=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -224, + "top": -248, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5StaqW9rQ9mc=", + "_parent": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "model": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "visible": false, + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "left": -224, + "top": -248, + "width": 10, + "height": 10 + } + ], + "fillColor": "#ffc1ad", + "font": "Arial;13;0", + "containerChangeable": true, + "left": 1696, + "top": 704, + "width": 253, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5StaqW9rHsAM=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5StaqW9rMapE=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5StaqW9rNzzg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5StaqW9rON6o=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5StaqW9rPWX8=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5StaqW9rQ9mc=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5StcY69+auow=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Wpu4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY69+bJyw=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Wpu4=" + }, + "font": "Arial;13;0", + "left": 1815, + "top": 619, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "edgePosition": 1, + "text": "+未完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY69+crMs=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Wpu4=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1853, + "top": 619, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY69+d1N0=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Wpu4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1809, + "top": 618, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY7N+esYw=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+XtIs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1840, + "top": 567, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY7N+f1JY=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+XtIs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1853, + "top": 569, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY7N+gGlM=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+XtIs=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1812, + "top": 562, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY7N+hLtM=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Yoz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1837, + "top": 671, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY7N+i0N0=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Yoz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1850, + "top": 669, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StcY7N+jJRk=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Yoz0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1810, + "top": 675, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StcY69+auow=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StcY7N+k7Ks=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+XtIs=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StcY7N+lWqU=", + "_parent": { + "$ref": "AAAAAAF5StcY69+auow=" + }, + "model": { + "$ref": "AAAAAAF5StcY69+Yoz0=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "tail": { + "$ref": "AAAAAAF5QKIG+T9Y4ko=" + }, + "lineStyle": 1, + "points": "1826:547;1822:703", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5StcY69+bJyw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5StcY69+crMs=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StcY69+d1N0=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5StcY7N+esYw=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5StcY7N+f1JY=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5StcY7N+gGlM=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5StcY7N+hLtM=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5StcY7N+i0N0=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5StcY7N+jJRk=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5StcY7N+k7Ks=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5StcY7N+lWqU=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5StecvuuYlQs=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuUiTw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuuZ8Fw=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuUiTw=" + }, + "font": "Arial;13;0", + "left": 1776, + "top": 1083, + "width": 98.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "edgePosition": 1, + "text": "+跳转测回后补测" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuuawiY=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuUiTw=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1840, + "top": 1083, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuubliA=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuUiTw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1796, + "top": 1082, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuucS6Y=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuVcKw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1835, + "top": 759, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuudsIs=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuVcKw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1848, + "top": 762, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuueFws=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuVcKw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1807, + "top": 754, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuufPVU=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuWIOM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1816, + "top": 1407, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuugcGo=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuWIOM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1830, + "top": 1405, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StecvuuhAqk=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuWIOM=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1789, + "top": 1411, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StecvuuYlQs=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StecvuuiooQ=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuVcKw=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Stecv+uj9kw=", + "_parent": { + "$ref": "AAAAAAF5StecvuuYlQs=" + }, + "model": { + "$ref": "AAAAAAF5StecvuuWIOM=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "lineStyle": 1, + "points": "1821:739;1801:1439", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5StecvuuZ8Fw=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5StecvuuawiY=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StecvuubliA=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5StecvuucS6Y=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5StecvuudsIs=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5StecvuueFws=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5StecvuufPVU=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5StecvuugcGo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5StecvuuhAqk=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5StecvuuiooQ=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5Stecv+uj9kw=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5Stg/Ofb2A68=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/byEbA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb3nog=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/byEbA=" + }, + "font": "Arial;13;0", + "left": 1315, + "top": 605, + "width": 72.22798156738281, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "edgePosition": 1, + "text": "+取消or忽略" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb45tw=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/byEbA=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 1347, + "top": 619, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb5GmI=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/byEbA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1358, + "top": 576, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb6tf0=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/bz2/4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1725, + "top": 704, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb78vU=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/bz2/4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1719, + "top": 717, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb8Jmw=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/bz2/4=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1736, + "top": 679, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb9zNg=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/b0VQA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 978, + "top": 506, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb+I1M=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/b0VQA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 977, + "top": 519, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Stg/Ofb/AoU=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/b0VQA=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 981, + "top": 478, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Stg/OfcA1lA=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/bz2/4=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Stg/OfcBL2A=", + "_parent": { + "$ref": "AAAAAAF5Stg/Ofb2A68=" + }, + "model": { + "$ref": "AAAAAAF5Stg/N/b0VQA=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QJjLZRML/gk=" + }, + "tail": { + "$ref": "AAAAAAF5StaqW9rGSo4=" + }, + "lineStyle": 1, + "points": "1754:703;957:491", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5Stg/Ofb3nog=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5Stg/Ofb45tw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Stg/Ofb5GmI=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5Stg/Ofb6tf0=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5Stg/Ofb78vU=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5Stg/Ofb8Jmw=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5Stg/Ofb9zNg=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5Stg/Ofb+I1M=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5Stg/Ofb/AoU=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5Stg/OfcA1lA=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5Stg/OfcBL2A=" + } + }, + { + "_type": "UMLUseCaseView", + "_id": "AAAAAAF5Stp87Q6fs2Y=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAF5Stp87g6gqlw=", + "_parent": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAF5Stp87g6h+fQ=", + "_parent": { + "$ref": "AAAAAAF5Stp87g6gqlw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 864, + "top": 48, + "height": 13 + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Stp87g6iB2Y=", + "_parent": { + "$ref": "AAAAAAF5Stp87g6gqlw=" + }, + "font": "Arial;13;1", + "left": 2518.5, + "top": 819.5, + "width": 151, + "height": 13, + "text": "isSingleCycleCompleted" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Stp87g6jrfo=", + "_parent": { + "$ref": "AAAAAAF5Stp87g6gqlw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 864, + "top": 48, + "width": 78.28593444824219, + "height": 13, + "text": "(from Model)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAF5Stp87g6koqM=", + "_parent": { + "$ref": "AAAAAAF5Stp87g6gqlw=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 864, + "top": 48, + "height": 13, + "horizontalAlignment": 1 + } + ], + "font": "Arial;13;0", + "left": 2513.5, + "top": 812.5, + "width": 161.708984375, + "height": 25, + "stereotypeLabel": { + "$ref": "AAAAAAF5Stp87g6h+fQ=" + }, + "nameLabel": { + "$ref": "AAAAAAF5Stp87g6iB2Y=" + }, + "namespaceLabel": { + "$ref": "AAAAAAF5Stp87g6jrfo=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Stp87g6koqM=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAF5Stp87g6lk/c=", + "_parent": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAF5Stp87g6mFIA=", + "_parent": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5Stp87g6nmy0=", + "_parent": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAF5Stp87g6oJMI=", + "_parent": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 24, + "width": 10, + "height": 10 + }, + { + "_type": "UMLExtensionPointCompartmentView", + "_id": "AAAAAAF5Stp87g6p63M=", + "_parent": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "model": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 432, + "top": 24, + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "containerChangeable": true, + "left": 2480, + "top": 808, + "width": 228, + "height": 35, + "nameCompartment": { + "$ref": "AAAAAAF5Stp87g6gqlw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAF5Stp87g6lk/c=" + }, + "operationCompartment": { + "$ref": "AAAAAAF5Stp87g6mFIA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5Stp87g6nmy0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAF5Stp87g6oJMI=" + }, + "extensionPointCompartment": { + "$ref": "AAAAAAF5Stp87g6p63M=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5StrWhROp4Oc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOl298=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROqofY=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOl298=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2352, + "top": 658, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROrA94=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOl298=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2360, + "top": 645, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROs2b4=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOl298=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2337, + "top": 683, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROtkZ8=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOmfyU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2157, + "top": 541, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROu87A=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOmfyU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2166, + "top": 531, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROvpPg=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOmfyU=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2140, + "top": 562, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROw9lc=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOnvuo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2548, + "top": 774, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROxGek=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOnvuo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2553, + "top": 762, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5StrWhROy9qY=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOnvuo=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2538, + "top": 800, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StrWhROzgAM=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOmfyU=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5StrWhRO0+cw=", + "_parent": { + "$ref": "AAAAAAF5StrWhROp4Oc=" + }, + "model": { + "$ref": "AAAAAAF5StrWhBOnvuo=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "tail": { + "$ref": "AAAAAAF5StIJ55ESsdQ=" + }, + "lineStyle": 1, + "points": "2128:547;2563:807", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5StrWhROqofY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5StrWhROrA94=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5StrWhROs2b4=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5StrWhROtkZ8=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5StrWhROu87A=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5StrWhROvpPg=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5StrWhROw9lc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5StrWhROxGek=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5StrWhROy9qY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5StrWhROzgAM=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5StrWhRO0+cw=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5Styi5hf3vEY=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rfz3o0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf45gs=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rfz3o0=" + }, + "font": "Arial;13;0", + "left": 2339, + "top": 811, + "width": 46.591796875, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "edgePosition": 1, + "text": "+完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf51HU=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rfz3o0=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2361, + "top": 826, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf6gvA=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rfz3o0=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2365, + "top": 782, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf7rXE=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf0fJk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2451, + "top": 820, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf8B7M=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf0fJk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2448, + "top": 833, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf95Ew=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf0fJk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2458, + "top": 793, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf+T+w=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf1+Tk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2274, + "top": 804, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hf/4I4=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf1+Tk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2275, + "top": 817, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5Styi5hgAAcY=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf1+Tk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2272, + "top": 776, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Styi5hgBznc=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf0fJk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5Styi5hgCPb4=", + "_parent": { + "$ref": "AAAAAAF5Styi5hf3vEY=" + }, + "model": { + "$ref": "AAAAAAF5Styi5Rf1+Tk=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QKE6Ojfzjv0=" + }, + "tail": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "lineStyle": 1, + "points": "2479:814;2250:793", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5Styi5hf45gs=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5Styi5hf51HU=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5Styi5hf6gvA=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5Styi5hf7rXE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5Styi5hf8B7M=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5Styi5hf95Ew=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5Styi5hf+T+w=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5Styi5hf/4I4=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5Styi5hgAAcY=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5Styi5hgBznc=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5Styi5hgCPb4=" + } + }, + { + "_type": "UMLAssociationView", + "_id": "AAAAAAF5St1uUR+q0qc=", + "_parent": { + "$ref": "AAAAAAF5P5m6Qk1jVXQ=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+mHuk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+rshY=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+mHuk=" + }, + "font": "Arial;13;0", + "left": 2182, + "top": 1146, + "width": 46.864990234375, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "edgePosition": 1, + "text": "+未完成" + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+sGjw=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+mHuk=" + }, + "visible": null, + "font": "Arial;13;0", + "left": 2214, + "top": 1158, + "height": 13, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+t4JQ=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+mHuk=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2186, + "top": 1123, + "height": 13, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+uiWE=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+nHko=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2559, + "top": 864, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+v1Ig=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+nHko=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2565, + "top": 876, + "height": 13, + "alpha": 0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+wJBc=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+nHko=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 2545, + "top": 840, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "edgePosition": 2 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+xuEc=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+oJAQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1852, + "top": 1428, + "height": 13, + "alpha": -0.5235987755982988, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+yEoo=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+oJAQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1862, + "top": 1437, + "height": 13, + "alpha": -0.7853981633974483, + "distance": 40, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + } + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAF5St1uUR+zGSA=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+oJAQ=" + }, + "visible": false, + "font": "Arial;13;0", + "left": 1832, + "top": 1409, + "height": 13, + "alpha": 0.5235987755982988, + "distance": 25, + "hostEdge": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + } + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5St1uUR+02pE=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+nHko=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLQualifierCompartmentView", + "_id": "AAAAAAF5St1uUR+1/EE=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+q0qc=" + }, + "model": { + "$ref": "AAAAAAF5St1uUR+oJAQ=" + }, + "visible": false, + "font": "Arial;13;0", + "width": 10, + "height": 10 + } + ], + "font": "Arial;13;0", + "head": { + "$ref": "AAAAAAF5QMaQUG/rlG8=" + }, + "tail": { + "$ref": "AAAAAAF5Stp87Q6fs2Y=" + }, + "lineStyle": 1, + "points": "2570:843;1823:1439", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAF5St1uUR+rshY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAF5St1uUR+sGjw=" + }, + "propertyLabel": { + "$ref": "AAAAAAF5St1uUR+t4JQ=" + }, + "tailRoleNameLabel": { + "$ref": "AAAAAAF5St1uUR+uiWE=" + }, + "tailPropertyLabel": { + "$ref": "AAAAAAF5St1uUR+v1Ig=" + }, + "tailMultiplicityLabel": { + "$ref": "AAAAAAF5St1uUR+wJBc=" + }, + "headRoleNameLabel": { + "$ref": "AAAAAAF5St1uUR+xuEc=" + }, + "headPropertyLabel": { + "$ref": "AAAAAAF5St1uUR+yEoo=" + }, + "headMultiplicityLabel": { + "$ref": "AAAAAAF5St1uUR+zGSA=" + }, + "tailQualifiersCompartment": { + "$ref": "AAAAAAF5St1uUR+02pE=" + }, + "headQualifiersCompartment": { + "$ref": "AAAAAAF5St1uUR+1/EE=" + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P5nMrk1mLCw=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "check2C", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P5saV03F9So=", + "_parent": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "name": "通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5saV03GReQ=", + "_parent": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "reference": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5saV03HrLQ=", + "_parent": { + "$ref": "AAAAAAF5P5saV03F9So=" + }, + "reference": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P56tf07Epig=", + "_parent": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P56tgE7F7Yk=", + "_parent": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "reference": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P56tgE7GNNA=", + "_parent": { + "$ref": "AAAAAAF5P56tf07Epig=" + }, + "reference": { + "$ref": "AAAAAAF5P56LY06KFIA=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P5rmBE2WOV0=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "recordClean" + }, + { + "_type": "UMLUseCaseSubject", + "_id": "AAAAAAF5P5vlT04vpIc=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "用户选择操作" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P56LY06KFIA=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "【用户选择操作】", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P5/ask/ASWM=", + "_parent": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "name": "选择忽略or重测目标", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5/ask/BASE=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "reference": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P5/ask/CwwU=", + "_parent": { + "$ref": "AAAAAAF5P5/ask/ASWM=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6ETu1Fsgo0=", + "_parent": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "name": "重测测回", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6ETu1FtUvs=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "reference": { + "$ref": "AAAAAAF5P56LY06KFIA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6ETu1Fuzfc=", + "_parent": { + "$ref": "AAAAAAF5P6ETu1Fsgo0=" + }, + "reference": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P5/CAk96MB0=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "Idle" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P6Btl1DQYFs=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "【提示用户是否确定删除整个测回】", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6HZl1I+eIg=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "name": "选择忽略or取消", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6HZl1I/u/s=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "reference": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6HZl1JAt1Q=", + "_parent": { + "$ref": "AAAAAAF5P6HZl1I+eIg=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6Jc6FP89fs=", + "_parent": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "name": "确认删除", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6Jc6FP9Ay0=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "reference": { + "$ref": "AAAAAAF5P6Btl1DQYFs=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6Jc6FP+W/w=", + "_parent": { + "$ref": "AAAAAAF5P6Jc6FP89fs=" + }, + "reference": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P6IYDFMK28k=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "【执行删除操作】", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5P6KuWFYuLA4=", + "_parent": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6KuWFYvXto=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "reference": { + "$ref": "AAAAAAF5P6IYDFMK28k=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5P6KuWFYwtmg=", + "_parent": { + "$ref": "AAAAAAF5P6KuWFYuLA4=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5P6I/oFN00qM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "重新搜索目标开启新一轮测量", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJXgiQky2RI=", + "_parent": { + "$ref": "AAAAAAF5P6I/oFN00qM=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJXgiQkzVQM=", + "_parent": { + "$ref": "AAAAAAF5QJXgiQky2RI=" + }, + "reference": { + "$ref": "AAAAAAF5P6I/oFN00qM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJXgiQk0kU4=", + "_parent": { + "$ref": "AAAAAAF5QJXgiQky2RI=" + }, + "reference": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJWvCggxZrM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "move2NextValidate", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVWv2lZqu2A=", + "_parent": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVWv2lZro+8=", + "_parent": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "reference": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVWv2lZs/XI=", + "_parent": { + "$ref": "AAAAAAF5RVWv2lZqu2A=" + }, + "reference": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJc4CA2m0sA=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkHalfCycleZero", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJesYRAUeZI=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "name": "测站不闭合or半测回归零差正常", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJesYRAV/Pw=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "reference": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJesYRAWIno=", + "_parent": { + "$ref": "AAAAAAF5QJesYRAUeZI=" + }, + "reference": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJmQwBdscKg=", + "_parent": { + "$ref": "AAAAAAF5QJc4CA2m0sA=" + }, + "name": "没有通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJmQwBdt/Nk=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "reference": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJmQwBdu0wk=", + "_parent": { + "$ref": "AAAAAAF5QJmQwBdscKg=" + }, + "reference": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJeXAw9WAQQ=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isReady2CCheck" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJjLZBMJQJ8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "switchState2StandStill", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJnk3RnjFKU=", + "_parent": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnk3Rnk4S8=", + "_parent": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnk3Rnlvxc=", + "_parent": { + "$ref": "AAAAAAF5QJnk3RnjFKU=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJk5ohVWyGc=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示半测回归零检测失败", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJnHsRkKHYc=", + "_parent": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnHsRkLdTo=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "reference": { + "$ref": "AAAAAAF5QJk5ohVWyGc=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJnHsRkM5N4=", + "_parent": { + "$ref": "AAAAAAF5QJnHsRkKHYc=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJ6ahSPVJNg=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkReadData", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJ87Oyj+dCg=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "name": "单测量or通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ87Oyj/TJQ=", + "_parent": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "reference": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ87OykA4RY=", + "_parent": { + "$ref": "AAAAAAF5QJ87Oyj+dCg=" + }, + "reference": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJ/Ugywh52g=", + "_parent": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/Ugywiha4=", + "_parent": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "reference": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/UgywjRPE=", + "_parent": { + "$ref": "AAAAAAF5QJ/Ugywh52g=" + }, + "reference": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJ8m8Sf4R1w=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isHalfCycleZeroCheckReady", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsvDEBJ10hk=", + "_parent": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsvDEBJ2t9o=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ10hk=" + }, + "reference": { + "$ref": "AAAAAAF5QJ8m8Sf4R1w=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsvDEBJ3GSY=", + "_parent": { + "$ref": "AAAAAAF5SsvDEBJ10hk=" + }, + "reference": { + "$ref": "AAAAAAF5Sst98gwopLY=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QJ+mRitXafY=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示读数有误", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QJ/0PCz+xYo=", + "_parent": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/0PCz/2CU=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "reference": { + "$ref": "AAAAAAF5QJ+mRitXafY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QJ/0PC0AjHo=", + "_parent": { + "$ref": "AAAAAAF5QJ/0PCz+xYo=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKE6OTfx/D4=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkSingleCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QKI4y0KDGow=", + "_parent": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "name": "通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKI4zEKEuw8=", + "_parent": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "reference": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKI4zEKFtZg=", + "_parent": { + "$ref": "AAAAAAF5QKI4y0KDGow=" + }, + "reference": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QKvMIE8VEZE=", + "_parent": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKvMIE8WKCE=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "reference": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QKvMIE8XsG8=", + "_parent": { + "$ref": "AAAAAAF5QKvMIE8VEZE=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKIG+T9Wjdo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isAllCycleCompleted", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5StWKjad7sNs=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "name": "完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StWKjad8hyI=", + "_parent": { + "$ref": "AAAAAAF5StWKjad7sNs=" + }, + "reference": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StWKjad96kQ=", + "_parent": { + "$ref": "AAAAAAF5StWKjad7sNs=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5StcY69+Wpu4=", + "_parent": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "name": "未完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StcY69+XtIs=", + "_parent": { + "$ref": "AAAAAAF5StcY69+Wpu4=" + }, + "reference": { + "$ref": "AAAAAAF5QKIG+T9Wjdo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StcY69+Yoz0=", + "_parent": { + "$ref": "AAAAAAF5StcY69+Wpu4=" + }, + "reference": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + } + } + } + ] + }, + { + "_type": "UMLUseCaseSubject", + "_id": "AAAAAAF5QKJM6UPX41c=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "UseCaseSubject1" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKuCwkzWMuI=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示用户选择", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QK2Ql1lrW/0=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "name": "忽略", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK2Ql1lsCzU=", + "_parent": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK2Ql1ltUBY=", + "_parent": { + "$ref": "AAAAAAF5QK2Ql1lrW/0=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QLdiW2HmZcI=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLdiW2HnzLc=", + "_parent": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLdiW2HodP8=", + "_parent": { + "$ref": "AAAAAAF5QLdiW2HmZcI=" + }, + "reference": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QMnaf4pzXpA=", + "_parent": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMnaf4p0R7o=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMnaf4p1n0A=", + "_parent": { + "$ref": "AAAAAAF5QMnaf4pzXpA=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKyR6VB8Gq8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "重测方向", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QLx6RGoJ91g=", + "_parent": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLx6RGoKxZI=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "reference": { + "$ref": "AAAAAAF5QKyR6VB8Gq8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QLx6RGoLs1U=", + "_parent": { + "$ref": "AAAAAAF5QLx6RGoJ91g=" + }, + "reference": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKysH1F2Xh8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "重测测回", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QNAhapFq3kM=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "name": "取消", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNAhapFrudc=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNAhapFsZZ8=", + "_parent": { + "$ref": "AAAAAAF5QNAhapFq3kM=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QNFL6qCXEtU=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "name": "忽略", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNFL6qCY2AQ=", + "_parent": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QNFL6qCZ01s=", + "_parent": { + "$ref": "AAAAAAF5QNFL6qCXEtU=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVcwNF0hcaI=", + "_parent": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVcwNF0iVWE=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "reference": { + "$ref": "AAAAAAF5QKysH1F2Xh8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVcwNF0jQf0=", + "_parent": { + "$ref": "AAAAAAF5RVcwNF0hcaI=" + }, + "reference": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QKzDRVJwpI4=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "resetSurveyorStateAndKeepPosition", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QK340l0BzRk=", + "_parent": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK340l0ChAw=", + "_parent": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QK340l0D79M=", + "_parent": { + "$ref": "AAAAAAF5QK340l0BzRk=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QLwOJ2bN7N0=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "resurveyPoints", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QMbzEHNMUo0=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "name": "开始重测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMbzEHNNh8o=", + "_parent": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "reference": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMbzEHNOm6M=", + "_parent": { + "$ref": "AAAAAAF5QMbzEHNMUo0=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + }, + { + "_type": "UMLGeneralization", + "_id": "AAAAAAF5QMevPnTKBWs=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "name": "重测失败", + "source": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "target": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVTunkvVKUs=", + "_parent": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "name": "重测失败", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVTun0vWQ0U=", + "_parent": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "reference": { + "$ref": "AAAAAAF5QLwOJ2bN7N0=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVTun0vXr0g=", + "_parent": { + "$ref": "AAAAAAF5RVTunkvVKUs=" + }, + "reference": { + "$ref": "AAAAAAF5QKzDRVJwpI4=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5QMaQUG/pf+g=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "switchState2RestartInCurrentCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5QMjEpoXtFac=", + "_parent": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMjEpoXuicM=", + "_parent": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5QMjEpoXvKNs=", + "_parent": { + "$ref": "AAAAAAF5QMjEpoXtFac=" + }, + "reference": { + "$ref": "AAAAAAF5QJWvCggxZrM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RVbpp1nIOnU=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "执行测回删除", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RVdEqWBKDgY=", + "_parent": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVdEqWBL2Ro=", + "_parent": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "reference": { + "$ref": "AAAAAAF5RVbpp1nIOnU=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RVdEqWBMaWs=", + "_parent": { + "$ref": "AAAAAAF5RVdEqWBKDgY=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWbWh5Q82SE=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doCalScheduleSingleCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWkDr6/4piw=", + "_parent": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWkDr6/5hKI=", + "_parent": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "reference": { + "$ref": "AAAAAAF5RWbWh5Q82SE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWkDr6/6Fyk=", + "_parent": { + "$ref": "AAAAAAF5RWkDr6/4piw=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + } + } + } + ] + }, + { + "_type": "UMLUseCaseSubject", + "_id": "AAAAAAF5RWdznZ2YK/Q=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "UseCaseSubject2" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWiYh6tdXHE=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "该测回是否完成测量", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWmAObifwr4=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "name": "未完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWmAObigyuY=", + "_parent": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWmAObih5u0=", + "_parent": { + "$ref": "AAAAAAF5RWmAObifwr4=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWqc8svr3pE=", + "_parent": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "name": "完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWqc8svs8AE=", + "_parent": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWqc8svtE1U=", + "_parent": { + "$ref": "AAAAAAF5RWqc8svr3pE=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWo+Icga7No=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "执行单测回检测", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWvJyNWC314=", + "_parent": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "name": "未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWvJyNWDYLg=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWvJyNWEI/s=", + "_parent": { + "$ref": "AAAAAAF5RWvJyNWC314=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RWxGx9n5fHg=", + "_parent": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "name": "通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWxGx9n6uSs=", + "_parent": { + "$ref": "AAAAAAF5RWxGx9n5fHg=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RWxGx9n7A0k=", + "_parent": { + "$ref": "AAAAAAF5RWxGx9n5fHg=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RXgsE81LcLM=", + "_parent": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "name": "通过", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXgsE81Ml9Y=", + "_parent": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "reference": { + "$ref": "AAAAAAF5RWo+Icga7No=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXgsE81Ncj4=", + "_parent": { + "$ref": "AAAAAAF5RXgsE81LcLM=" + }, + "reference": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RWzzg+QnXQo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doCalScheduleAllCycle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RXS1D5dDHCY=", + "_parent": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXS1D5dEJJs=", + "_parent": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "reference": { + "$ref": "AAAAAAF5RWzzg+QnXQo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXS1D5dF2N4=", + "_parent": { + "$ref": "AAAAAAF5RXS1D5dDHCY=" + }, + "reference": { + "$ref": "AAAAAAF5RWiYh6tdXHE=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RXZT3reRJjE=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "是否是doCalScheduleAllCycle状态", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RXiiW9aJDaw=", + "_parent": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "name": "不是", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXiiW9aKkno=", + "_parent": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "reference": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RXiiW9aL3M4=", + "_parent": { + "$ref": "AAAAAAF5RXiiW9aJDaw=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RX50xeaOm84=", + "_parent": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "name": "是", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX50xeaPW6s=", + "_parent": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "reference": { + "$ref": "AAAAAAF5RXZT3reRJjE=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX50xeaQJxA=", + "_parent": { + "$ref": "AAAAAAF5RX50xeaOm84=" + }, + "reference": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RX4IzeDinbw=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回是否有待补测数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RX9EYPFbm2U=", + "_parent": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX9EYPFcd3k=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "reference": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX9EYPFdtmc=", + "_parent": { + "$ref": "AAAAAAF5RX9EYPFbm2U=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYXKoEPvmVE=", + "_parent": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "name": "无", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYXKoUPwWeY=", + "_parent": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "reference": { + "$ref": "AAAAAAF5RX4IzeDinbw=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYXKoUPxCsE=", + "_parent": { + "$ref": "AAAAAAF5RYXKoEPvmVE=" + }, + "reference": { + "$ref": "AAAAAAF5RYWBNT536bM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RX8e8+6Tpi8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示用户选择", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYA6LQaqG8I=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "name": "跳转到相应测回", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYA6LQaryvU=", + "_parent": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYA6LQashgM=", + "_parent": { + "$ref": "AAAAAAF5RYA6LQaqG8I=" + }, + "reference": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYRxIiqJIUE=", + "_parent": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "name": "忽略或取消", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYRxIyqKuUY=", + "_parent": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYRxIyqLN6Y=", + "_parent": { + "$ref": "AAAAAAF5RYRxIiqJIUE=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RX+92vrrsgo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "切换测回", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RX/wMv3F6d4=", + "_parent": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX/wMv3GM64=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "reference": { + "$ref": "AAAAAAF5RX+92vrrsgo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RX/wMv3HIz8=", + "_parent": { + "$ref": "AAAAAAF5RX/wMv3F6d4=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RYWBNT536bM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回是否有空数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYbKCEsJsiQ=", + "_parent": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYbKCEsKkG0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "reference": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYbKCEsLR+0=", + "_parent": { + "$ref": "AAAAAAF5RYbKCEsJsiQ=" + }, + "reference": { + "$ref": "AAAAAAF5RX8e8+6Tpi8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYqgkaOybww=", + "_parent": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "name": "无空测回", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYqgkaOzOcA=", + "_parent": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "reference": { + "$ref": "AAAAAAF5RYWBNT536bM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYqgkaO0Gyw=", + "_parent": { + "$ref": "AAAAAAF5RYqgkaOybww=" + }, + "reference": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RYo1sJrxVxU=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回合法性", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RYuGza0vDqU=", + "_parent": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "name": "发现有测回未通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYuGza0wl4I=", + "_parent": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "reference": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RYuGza0xzjs=", + "_parent": { + "$ref": "AAAAAAF5RYuGza0vDqU=" + }, + "reference": { + "$ref": "AAAAAAF5QKuCwkzWMuI=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RY5M4rVOVIM=", + "_parent": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "name": "全部通过检测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY5M4rVPReU=", + "_parent": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "reference": { + "$ref": "AAAAAAF5RYo1sJrxVxU=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY5M4rVQGdM=", + "_parent": { + "$ref": "AAAAAAF5RY5M4rVOVIM=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RY+P3cq56es=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "switchState2Idle", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RY/lWtHqafY=", + "_parent": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY/lW9Hrql4=", + "_parent": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "reference": { + "$ref": "AAAAAAF5RY+P3cq56es=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RY/lW9HsN84=", + "_parent": { + "$ref": "AAAAAAF5RY/lWtHqafY=" + }, + "reference": { + "$ref": "AAAAAAF5P5/CAk96MB0=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RZAQp9i7BLM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "查找待补测数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZDsue7baAw=", + "_parent": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZDsue7cAPs=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "reference": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZDsue7dBLs=", + "_parent": { + "$ref": "AAAAAAF5RZDsue7baAw=" + }, + "reference": { + "$ref": "AAAAAAF5RY+P3cq56es=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZE5JvvgNmk=", + "_parent": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "name": "无", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZE5Jvvh7eI=", + "_parent": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "reference": { + "$ref": "AAAAAAF5RZAQp9i7BLM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZE5JvviTz0=", + "_parent": { + "$ref": "AAAAAAF5RZE5JvvgNmk=" + }, + "reference": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RZEXNfhA9nA=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "查找空数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZGEZgj773A=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "name": "有", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZGEZgj8gpI=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "reference": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZGEZgj9p0E=", + "_parent": { + "$ref": "AAAAAAF5RZGEZgj773A=" + }, + "reference": { + "$ref": "AAAAAAF5RY+P3cq56es=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5RZHb+g34JOw=", + "_parent": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "name": "无", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZHb+g35LNk=", + "_parent": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "reference": { + "$ref": "AAAAAAF5RZEXNfhA9nA=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5RZHb+g36Mvo=", + "_parent": { + "$ref": "AAAAAAF5RZHb+g34JOw=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5RZ6XBTi4yu4=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doMoveBack" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Sr6mm1dGVLo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doSurveyor", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsC4Mnft0S4=", + "_parent": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsC4Mnfuteg=", + "_parent": { + "$ref": "AAAAAAF5SsC4Mnft0S4=" + }, + "reference": { + "$ref": "AAAAAAF5Sr6mm1dGVLo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsC4Mnfv/lw=", + "_parent": { + "$ref": "AAAAAAF5SsC4Mnft0S4=" + }, + "reference": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Sr+CM2b/I6Q=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "检测其他测回是否有正在测量数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsGTyovTQIg=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "name": "有数据", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsGTy4vUxm0=", + "_parent": { + "$ref": "AAAAAAF5SsGTyovTQIg=" + }, + "reference": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsGTy4vVaZ0=", + "_parent": { + "$ref": "AAAAAAF5SsGTyovTQIg=" + }, + "reference": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsLOnqvOHTI=", + "_parent": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "name": "无数据", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsLOnqvP3jk=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvOHTI=" + }, + "reference": { + "$ref": "AAAAAAF5Sr+CM2b/I6Q=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsLOnqvQ0Oc=", + "_parent": { + "$ref": "AAAAAAF5SsLOnqvOHTI=" + }, + "reference": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5SsEjzYJ/d3I=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "提示用户是否删除数据", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsIvB5pTO8k=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsIvB5pUHxM=", + "_parent": { + "$ref": "AAAAAAF5SsIvB5pTO8k=" + }, + "name": "忽略or取消", + "reference": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsIvB5pVSwc=", + "_parent": { + "$ref": "AAAAAAF5SsIvB5pTO8k=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsLnA66XUCE=", + "_parent": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "name": "确定删除", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsLnBK6Y5d4=", + "_parent": { + "$ref": "AAAAAAF5SsLnA66XUCE=" + }, + "reference": { + "$ref": "AAAAAAF5SsEjzYJ/d3I=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsLnBK6ZnVU=", + "_parent": { + "$ref": "AAAAAAF5SsLnA66XUCE=" + }, + "reference": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5SsKfZqcx8QM=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "执行测量", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5Ssd4074UW6o=", + "_parent": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "name": "测量成功", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Ssd41L4V+18=", + "_parent": { + "$ref": "AAAAAAF5Ssd4074UW6o=" + }, + "reference": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Ssd41L4WIjg=", + "_parent": { + "$ref": "AAAAAAF5Ssd4074UW6o=" + }, + "reference": { + "$ref": "AAAAAAF5QJ6ahSPVJNg=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsfL78fSWbs=", + "_parent": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "name": "测量失败", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsfL78fTiS4=", + "_parent": { + "$ref": "AAAAAAF5SsfL78fSWbs=" + }, + "reference": { + "$ref": "AAAAAAF5SsKfZqcx8QM=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsfL78fU9Fc=", + "_parent": { + "$ref": "AAAAAAF5SsfL78fSWbs=" + }, + "reference": { + "$ref": "AAAAAAF5Sseu4cD1ALY=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5SsdYcrYFUTc=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkReadData" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Sseu4cD1ALY=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "SurveyorFailure" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Sst98gwopLY=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "是否闭合", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SsxY9BsjL0w=", + "_parent": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "name": "否", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsxY9BskgpI=", + "_parent": { + "$ref": "AAAAAAF5SsxY9BsjL0w=" + }, + "reference": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SsxY9Bsl5Tg=", + "_parent": { + "$ref": "AAAAAAF5SsxY9BsjL0w=" + }, + "reference": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5SszpXCjkGRI=", + "_parent": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "name": "是", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SszpXCjl/+8=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjkGRI=" + }, + "reference": { + "$ref": "AAAAAAF5Sst98gwopLY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5SszpXCjmncs=", + "_parent": { + "$ref": "AAAAAAF5SszpXCjkGRI=" + }, + "reference": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Ssw/MxbPNVc=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "checkHalfCycleZero" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5SsyaiR+Q8s8=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "执行归零检测", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5Ss0jcC4aijg=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "name": "成功", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Ss0jcC4bSQM=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4aijg=" + }, + "reference": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Ss0jcC4cI98=", + "_parent": { + "$ref": "AAAAAAF5Ss0jcC4aijg=" + }, + "reference": { + "$ref": "AAAAAAF5Ssw/MxbPNVc=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5Ss1sYzc1nBg=", + "_parent": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "name": "未成功", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Ss1sYzc28DU=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc1nBg=" + }, + "reference": { + "$ref": "AAAAAAF5SsyaiR+Q8s8=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Ss1sYzc3JbA=", + "_parent": { + "$ref": "AAAAAAF5Ss1sYzc1nBg=" + }, + "reference": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Ss1QlzKrDlo=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isReady2CCheck", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5StBNjXaXraA=", + "_parent": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "name": "满足条件", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StBNjXaYthc=", + "_parent": { + "$ref": "AAAAAAF5StBNjXaXraA=" + }, + "reference": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StBNjXaZel4=", + "_parent": { + "$ref": "AAAAAAF5StBNjXaXraA=" + }, + "reference": { + "$ref": "AAAAAAF5P5nMrk1mLCw=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5StIhppW+/2s=", + "_parent": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "name": "不满足", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StIhppW/3D0=", + "_parent": { + "$ref": "AAAAAAF5StIhppW+/2s=" + }, + "reference": { + "$ref": "AAAAAAF5Ss1QlzKrDlo=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StIhppXAozs=", + "_parent": { + "$ref": "AAAAAAF5StIhppW+/2s=" + }, + "reference": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Ss//822MKvk=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "check2C" + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5StIJ5pEQ/FY=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "doRecordClean", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5StrWhBOl298=", + "_parent": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StrWhBOmfyU=", + "_parent": { + "$ref": "AAAAAAF5StrWhBOl298=" + }, + "reference": { + "$ref": "AAAAAAF5StIJ5pEQ/FY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StrWhBOnvuo=", + "_parent": { + "$ref": "AAAAAAF5StrWhBOl298=" + }, + "reference": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5StaqWtrE9ro=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "用户选择是否跳转到其他测回", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5StecvuuUiTw=", + "_parent": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "name": "跳转测回后补测", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StecvuuVcKw=", + "_parent": { + "$ref": "AAAAAAF5StecvuuUiTw=" + }, + "reference": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5StecvuuWIOM=", + "_parent": { + "$ref": "AAAAAAF5StecvuuUiTw=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5Stg/N/byEbA=", + "_parent": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "name": "取消or忽略", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Stg/N/bz2/4=", + "_parent": { + "$ref": "AAAAAAF5Stg/N/byEbA=" + }, + "reference": { + "$ref": "AAAAAAF5StaqWtrE9ro=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Stg/N/b0VQA=", + "_parent": { + "$ref": "AAAAAAF5Stg/N/byEbA=" + }, + "reference": { + "$ref": "AAAAAAF5QJjLZBMJQJ8=" + } + } + } + ] + }, + { + "_type": "UMLUseCase", + "_id": "AAAAAAF5Stp87A6d2HY=", + "_parent": { + "$ref": "AAAAAAFElm6BOFNpegQ=" + }, + "name": "isSingleCycleCompleted", + "ownedElements": [ + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5Styi5Rfz3o0=", + "_parent": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "name": "完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Styi5Rf0fJk=", + "_parent": { + "$ref": "AAAAAAF5Styi5Rfz3o0=" + }, + "reference": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5Styi5Rf1+Tk=", + "_parent": { + "$ref": "AAAAAAF5Styi5Rfz3o0=" + }, + "reference": { + "$ref": "AAAAAAF5QKE6OTfx/D4=" + } + } + }, + { + "_type": "UMLAssociation", + "_id": "AAAAAAF5St1uUR+mHuk=", + "_parent": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "name": "未完成", + "end1": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5St1uUR+nHko=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+mHuk=" + }, + "reference": { + "$ref": "AAAAAAF5Stp87A6d2HY=" + }, + "navigable": false + }, + "end2": { + "_type": "UMLAssociationEnd", + "_id": "AAAAAAF5St1uUR+oJAQ=", + "_parent": { + "$ref": "AAAAAAF5St1uUR+mHuk=" + }, + "reference": { + "$ref": "AAAAAAF5QMaQUG/pf+g=" + } + } + } + ] + } + ] + }, + { + "_type": "UMLProfile", + "_id": "AAAAAAFElnEzslS1AuE=", + "_parent": { + "$ref": "AAAAAAFElm5XMFNoGY0=" + }, + "name": "UMLStandardProfile", + "ownedElements": [ + { + "_type": "UMLProfileDiagram", + "_id": "AAAAAAFElnFUQFS4mT4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "StandardProfileL2", + "ownedViews": [ + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFElnFrT1S8vVg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFElnFrT1S9WOE=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S8vVg=" + }, + "model": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1S+aHM=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": -44, + "top": -16, + "width": 1, + "height": 12 + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1S/1HM=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 57, + "top": 59, + "width": 81, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1TAD0M=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 57, + "top": 73, + "width": 81, + "height": 12, + "text": "UMLClassifier" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1TBaUI=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": -44, + "top": -16, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnFrT1TCF/Y=", + "_parent": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": -44, + "top": -16, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 52, + "top": 52, + "width": 91, + "height": 38, + "stereotypeLabel": { + "$ref": "AAAAAAFElnFrT1S/1HM=" + }, + "nameLabel": { + "$ref": "AAAAAAFElnFrT1TAD0M=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFElnFrT1TBaUI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnFrT1TCF/Y=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 52, + "top": 52, + "width": 91, + "height": 101, + "nameCompartment": { + "$ref": "AAAAAAFElnFrT1S9WOE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFElnF1nFTadPw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqCEfLOas=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFElnF1nFTbplQ=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTcCng=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 1, + "height": 12 + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTd3xg=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 213, + "top": 55, + "width": 83, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTewJM=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 213, + "top": 69, + "width": 83, + "height": 12, + "text": "Realization" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTfQRQ=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnF1nVTgrV8=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 48, + "width": 93, + "height": 38, + "stereotypeLabel": { + "$ref": "AAAAAAFElnF1nVTd3xg=" + }, + "nameLabel": { + "$ref": "AAAAAAFElnF1nVTewJM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFElnF1nVTfQRQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnF1nVTgrV8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFElnF1nVThfqA=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 86, + "width": 93, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFElnF1nVTiFXA=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 96, + "width": 93, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFElnF1nVTjasU=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "model": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 60, + "top": -116, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 208, + "top": 48, + "width": 93, + "height": 38, + "nameCompartment": { + "$ref": "AAAAAAFElnF1nFTbplQ=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFElnF1nVThfqA=" + }, + "operationCompartment": { + "$ref": "AAAAAAFElnF1nVTiFXA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqCEfLOas=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFElnF1nVTjasU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFElnGGLFUGHnM=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnGGLFUH+8s=", + "_parent": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 174, + "top": 73, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnGGLFUIOR8=", + "_parent": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "visible": null, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 174, + "top": 88, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnGGLFUJv6k=", + "_parent": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "model": { + "$ref": "AAAAAAFElnGGLFUFZFA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 175, + "top": 43, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnGGLFUGHnM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "head": { + "$ref": "AAAAAAFElnFrT1S8vVg=" + }, + "tail": { + "$ref": "AAAAAAFElnF1nFTadPw=" + }, + "points": "208:64;142:64", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFElnGGLFUH+8s=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFElnGGLFUIOR8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnGGLFUJv6k=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFElnJRglVMyB8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqCkfpKls=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFElnJRglVN/RI=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVO7ow=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 1, + "height": 12 + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVPiBM=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 217, + "top": 119, + "width": 74.73593139648438, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVQT1k=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 217, + "top": 133, + "width": 74.73593139648438, + "height": 12, + "text": "Specification" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVRdk8=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFElnJRglVSFic=", + "_parent": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 112, + "width": 84.73593139648438, + "height": 38, + "stereotypeLabel": { + "$ref": "AAAAAAFElnJRglVPiBM=" + }, + "nameLabel": { + "$ref": "AAAAAAFElnJRglVQT1k=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFElnJRglVRdk8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnJRglVSFic=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFElnJRglVTXPE=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 150, + "width": 84, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFElnJRglVUe0c=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 160, + "width": 84, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFElnJRg1VVWNU=", + "_parent": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "model": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 104, + "top": -176, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 212, + "top": 112, + "width": 84.73593139648438, + "height": 38, + "nameCompartment": { + "$ref": "AAAAAAFElnJRglVN/RI=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFElnJRglVTXPE=" + }, + "operationCompartment": { + "$ref": "AAAAAAFElnJRglVUe0c=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqCkfpKls=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFElnJRg1VVWNU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFElnKVuVV5hVg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnKVuVV6VLo=", + "_parent": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 176, + "top": 141, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnKVuVV7m9U=", + "_parent": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "visible": null, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 176, + "top": 156, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFElnKVuVV8bvU=", + "_parent": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "model": { + "$ref": "AAAAAAFElnKVuVV4pBU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 177, + "top": 111, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFElnKVuVV5hVg=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "head": { + "$ref": "AAAAAAFElnFrT1S8vVg=" + }, + "tail": { + "$ref": "AAAAAAFElnJRglVMyB8=" + }, + "points": "212:132;142:132", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFElnKVuVV6VLo=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFElnKVuVV7m9U=" + }, + "propertyLabel": { + "$ref": "AAAAAAFElnKVuVV8bvU=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFJsZbpDNpnkE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFJsZbpTNq6XM=", + "_parent": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNrbHw=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 561, + "top": 209, + "width": 87, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNsdGc=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerChangeable": true, + "containerExtending": true, + "left": 561, + "top": 223, + "width": 87, + "height": 12, + "text": "UMLClass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNtikk=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 1500, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFJsZbpTNuOXU=", + "_parent": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 1500, + "width": 1, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 556, + "top": 204, + "width": 97, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFJsZbpTNrbHw=" + }, + "nameLabel": { + "$ref": "AAAAAAFFJsZbpTNsdGc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFJsZbpTNtikk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFJsZbpTNuOXU=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerChangeable": true, + "containerExtending": true, + "left": 556, + "top": 204, + "width": 97, + "height": 305, + "nameCompartment": { + "$ref": "AAAAAAFFJsZbpTNq6XM=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwKqhJFq1z2Y=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKqhJFq2eQM=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "model": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq3hUU=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 57, + "top": 209, + "width": 79, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq4Vb4=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 57, + "top": 223, + "width": 79, + "height": 12, + "text": "UMLArtifact" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq5GlQ=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKqhJFq6Fls=", + "_parent": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 52, + "top": 204, + "width": 89, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKqhJFq3hUU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKqhJFq4Vb4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKqhJFq5GlQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKqhJFq6Fls=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 52, + "top": 204, + "width": 89, + "height": 329, + "nameCompartment": { + "$ref": "AAAAAAFFwKqhJFq2eQM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKsvdVrTyNI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqDUglDBo=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKsvdVrUE8w=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrVvYg=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 237, + "top": 209, + "width": 119, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrW/Dg=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "font": "Arial;12;3", + "containerExtending": true, + "left": 237, + "top": 223, + "width": 119, + "height": 12, + "text": "File" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrXXrQ=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 48, + "top": -12, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKsvdVrYnv8=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 48, + "top": -12, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 232, + "top": 204, + "width": 129, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKsvdVrVvYg=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKsvdVrW/Dg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKsvdVrXXrQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKsvdVrYnv8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKsvdVrZA0U=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 248, + "top": 236, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKsvdlraVvA=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 248, + "top": 236, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKsvdlrbd2U=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "model": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 32, + "top": -8, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 232, + "top": 204, + "width": 129, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwKsvdVrUE8w=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKsvdVrZA0U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKsvdlraVvA=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqDUglDBo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKsvdlrbd2U=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKtwS1r8DQQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqDUg7My0=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKtwS1r9YJ4=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1r+fw8=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 313, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1r/Lsw=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 189, + "top": 327, + "width": 72.51593017578125, + "height": 12, + "text": "Document" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1sAGYA=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 24, + "top": 24, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKtwS1sB7y4=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 24, + "top": 24, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 184, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKtwS1r+fw8=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKtwS1r/Lsw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKtwS1sAGYA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKtwS1sB7y4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKtwTFsC02k=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 192, + "top": 352, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKtwTFsD5lc=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 192, + "top": 352, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKtwTFsEQlE=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "model": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 16, + "top": 16, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 184, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKtwS1r9YJ4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKtwTFsC02k=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKtwTFsD5lc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqDUg7My0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKtwTFsEQlE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKuBulskCVg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqDkhRFFg=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKuBulsld0g=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBulsmb/s=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 257, + "top": 357, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBulsnKBI=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 257, + "top": 371, + "width": 72.51593017578125, + "height": 12, + "text": "Executable" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBu1soKF0=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -48, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuBu1spOXA=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -48, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "top": 352, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKuBulsmb/s=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKuBulsnKBI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKuBu1soKF0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKuBu1spOXA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKuBu1sqPhk=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 284, + "top": 372, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKuBu1srnoE=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 284, + "top": 372, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKuBu1ssVVg=", + "_parent": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "model": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 64, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "top": 352, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKuBulsld0g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKuBu1sqPhk=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKuBu1srnoE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqDkhRFFg=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKuBu1ssVVg=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKuIMltMJw4=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqD0hnnhc=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKuIMltNJK8=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tO63M=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 321, + "top": 405, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tPj60=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 321, + "top": 419, + "width": 72.51593017578125, + "height": 12, + "text": "Library" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tQD7A=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 132, + "top": -108, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuIM1tRSSY=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 132, + "top": -108, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 316, + "top": 400, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKuIM1tO63M=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKuIM1tPj60=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKuIM1tQD7A=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKuIM1tRSSY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKuIM1tSiN4=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 360, + "top": 400, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKuIM1tTPjo=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 360, + "top": 400, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKuIM1tUHbM=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "model": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 88, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 316, + "top": 400, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKuIMltNJK8=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKuIM1tSiN4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKuIM1tTPjo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqD0hnnhc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKuIM1tUHbM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKuS0lt0dAE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqEEh93KM=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKuS0lt1+MM=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt2XgE=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 385, + "top": 453, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt36r8=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 385, + "top": 467, + "width": 72.51593017578125, + "height": 12, + "text": "Script" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt4pP4=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 180, + "top": -180, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKuS0lt5mi4=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 180, + "top": -180, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 448, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKuS0lt2XgE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKuS0lt36r8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKuS0lt4pP4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKuS0lt5mi4=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKuS0lt6gjg=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 424, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKuS0lt7fo0=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 424, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKuS0lt8w2A=", + "_parent": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "model": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": -120, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 448, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKuS0lt1+MM=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKuS0lt6gjg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKuS0lt7fo0=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqEEh93KM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKuS0lt8w2A=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwKueMluc5bE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqEUiTykw=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwKueMludFfk=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMlueAco=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 445, + "top": 501, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMluflfo=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 445, + "top": 515, + "width": 72.51593017578125, + "height": 12, + "text": "Source" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMlughos=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -108, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwKueMluhfws=", + "_parent": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -108, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 496, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKueMlueAco=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwKueMluflfo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwKueMlughos=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKueMluhfws=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwKueMluihu4=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 500, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwKueMlujEyo=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 500, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwKueMlukJo8=", + "_parent": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "model": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 440, + "top": 496, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwKueMludFfk=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwKueMluihu4=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwKueMlujEyo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqEUiTykw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwKueMlukJo8=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKzkslvYVdw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzkslvZbd0=", + "_parent": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 258, + "top": 267, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzks1vasdU=", + "_parent": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 258, + "top": 252, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzks1vby/c=", + "_parent": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "model": { + "$ref": "AAAAAAFFwKzkslvX4gU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 258, + "top": 297, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzkslvYVdw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "points": "216:308;216:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKzkslvZbd0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKzks1vasdU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKzks1vby/c=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKzsCVvpt2A=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzsCVvqAUg=", + "_parent": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 285, + "top": 289, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzsCVvrTi8=", + "_parent": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 270, + "top": 289, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzsCVvsewQ=", + "_parent": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "model": { + "$ref": "AAAAAAFFwKzsCVvo11g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 314, + "top": 290, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzsCVvpt2A=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "points": "300:352;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKzsCVvqAUg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKzsCVvrTi8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKzsCVvsewQ=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKzxcVv6A2c=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzxcVv7wpA=", + "_parent": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 327, + "top": 297, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzxcVv8NxM=", + "_parent": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 327, + "top": 312, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKzxcVv9X58=", + "_parent": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "model": { + "$ref": "AAAAAAFFwKzxcVv56Dg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 328, + "top": 267, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKzxcVv6A2c=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "points": "356:400;356:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKzxcVv7wpA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKzxcVv8NxM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKzxcVv9X58=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKz3OVwLl+8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz3OVwMNB4=", + "_parent": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 357, + "top": 297, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz3OVwNd3E=", + "_parent": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 357, + "top": 312, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz3OVwODiI=", + "_parent": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "model": { + "$ref": "AAAAAAFFwKz3OVwK9hs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 358, + "top": 267, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz3OVwLl+8=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "points": "416:448;416:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKz3OVwMNB4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKz3OVwNd3E=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKz3OVwODiI=" + } + }, + { + "_type": "UMLGeneralizationView", + "_id": "AAAAAAFFwKz9mVwcos8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz9mVwdsGc=", + "_parent": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 391, + "top": 297, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz9mVweYvs=", + "_parent": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 391, + "top": 312, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwKz9mVwfOSk=", + "_parent": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "model": { + "$ref": "AAAAAAFFwKz9mFwbfDg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 392, + "top": 267, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwKz9mVwcos8=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "tail": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "points": "484:496;484:288;300:288;300:240", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwKz9mVwdsGc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwKz9mVweYvs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwKz9mVwfOSk=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK4k1VxFxwI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4k1lxGUvg=", + "_parent": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 161, + "top": 333, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4k1lxHABk=", + "_parent": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 161, + "top": 348, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4k1lxIpIg=", + "_parent": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "model": { + "$ref": "AAAAAAFFwK4k1VxEEpM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 162, + "top": 303, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4k1VxFxwI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKtwS1r8DQQ=" + }, + "points": "184:324;140:324", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK4k1lxGUvg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK4k1lxHABk=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK4k1lxIpIg=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK4o4VxWQBI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4o4VxXVGc=", + "_parent": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 195, + "top": 378, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4o4VxYgZc=", + "_parent": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 195, + "top": 393, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4o4VxZqsQ=", + "_parent": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "model": { + "$ref": "AAAAAAFFwK4o4VxVx00=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 196, + "top": 348, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4o4VxWQBI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKuBulskCVg=" + }, + "points": "252:369;140:369", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK4o4VxXVGc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK4o4VxYgZc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK4o4VxZqsQ=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK4tiVxnpno=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4tiVxoTEk=", + "_parent": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 227, + "top": 429, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4tiVxpG0I=", + "_parent": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 227, + "top": 444, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK4tiVxqKIY=", + "_parent": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "model": { + "$ref": "AAAAAAFFwK4tiVxmVJM=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 228, + "top": 399, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK4tiVxnpno=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKuIMltMJw4=" + }, + "points": "316:420;140:420", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK4tiVxoTEk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK4tiVxpG0I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK4tiVxqKIY=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK41YVx4sZw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK41YVx5rZ4=", + "_parent": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 259, + "top": 473, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK41YVx6mfE=", + "_parent": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 259, + "top": 488, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK41YVx7lFo=", + "_parent": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "model": { + "$ref": "AAAAAAFFwK41YVx3Hr0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 443, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK41YVx4sZw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKuS0lt0dAE=" + }, + "points": "380:464;140:464", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK41YVx5rZ4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK41YVx6mfE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK41YVx7lFo=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK47MFyJhkk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK47MFyKeH8=", + "_parent": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 289, + "top": 521, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK47MVyL2Gg=", + "_parent": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 289, + "top": 536, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK47MVyMJyk=", + "_parent": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "model": { + "$ref": "AAAAAAFFwK47MFyIL/c=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 290, + "top": 491, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK47MFyJhkk=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKueMluc5bE=" + }, + "points": "440:512;140:512", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK47MFyKeH8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK47MVyL2Gg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK47MVyMJyk=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwK5AeFyarms=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK5AeFybX8s=", + "_parent": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 185, + "top": 229, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK5AeFycm2c=", + "_parent": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 185, + "top": 244, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwK5AeVydbSU=", + "_parent": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "model": { + "$ref": "AAAAAAFFwK5AeFyZpVg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 186, + "top": 199, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwK5AeFyarms=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwKqhJFq1z2Y=" + }, + "tail": { + "$ref": "AAAAAAFFwKsvdVrTyNI=" + }, + "points": "232:220;140:220", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwK5AeFybX8s=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK5AeFycm2c=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK5AeVydbSU=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwK/k1ly1mNU=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwK/k1ly236Y=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly1mNU=" + }, + "model": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k1ly3kes=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 385, + "top": 585, + "width": 132, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k1ly4Kb0=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 385, + "top": 599, + "width": 132, + "height": 12, + "text": "UMLBehavioralFeature" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k11y5jis=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 972, + "top": 60, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwK/k11y6pH4=", + "_parent": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 972, + "top": 60, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 580, + "width": 142, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwK/k1ly3kes=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwK/k1ly4Kb0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwK/k11y5jis=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwK/k11y6pH4=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 380, + "top": 580, + "width": 142, + "height": 101, + "nameCompartment": { + "$ref": "AAAAAAFFwK/k1ly236Y=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLBdPFzSzQk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqFkkF9pQ=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLBdPFzT/sk=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzUtqg=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 589, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzVTVM=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 603, + "width": 72.51593017578125, + "height": 12, + "text": "Destroy" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzWXGg=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": 24, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLBdPFzX7Kw=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": 24, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 584, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLBdPFzUtqg=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLBdPFzVTVM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLBdPFzWXGg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLBdPFzX7Kw=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLBdPFzYl0A=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 632, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLBdPFzZMKQ=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 632, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLBdPFzaqUA=", + "_parent": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "model": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 80, + "top": 16, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 584, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwLBdPFzT/sk=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLBdPFzYl0A=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLBdPFzZMKQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqFkkF9pQ=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLBdPFzaqUA=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLDMaFz6CG0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLDMaFz7zuA=", + "_parent": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 349, + "top": 579, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLDMaFz8JJ4=", + "_parent": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 349, + "top": 564, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLDMaFz92bU=", + "_parent": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "model": { + "$ref": "AAAAAAFFwLDMaFz5C14=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 349, + "top": 609, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLDMaFz6CG0=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwK/k1ly1mNU=" + }, + "tail": { + "$ref": "AAAAAAFFwLBdPFzSzQk=" + }, + "points": "318:600;380:600", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLDMaFz7zuA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLDMaFz8JJ4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLDMaFz92bU=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLFUbV0ScDI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqF0kiyCM=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLFUbV0TTdY=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0UvYs=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 209, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0V4oU=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 223, + "width": 72.51593017578125, + "height": 12, + "text": "Auxiliary" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0WLEA=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -336, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFUbV0XEPg=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -336, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 204, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLFUbV0UvYs=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLFUbV0V4oU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLFUbV0WLEA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLFUbV0XEPg=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLFUbV0YxWc=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 128, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLFUbV0Z3Xk=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 128, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLFUbV0aLJo=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "model": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -224, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 204, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLFUbV0TTdY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLFUbV0YxWc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLFUbV0Z3Xk=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqF0kiyCM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLFUbV0aLJo=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLFu9F06sWk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqGEk49nc=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLFu9F07mo0=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F08FIY=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 261, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F09Ig0=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 275, + "width": 72.51593017578125, + "height": 12, + "text": "Focus" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F0+sYU=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -420, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLFu9F0/2cA=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -420, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 256, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLFu9F08FIY=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLFu9F09Ig0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLFu9F0+sYU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLFu9F0/2cA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLFu9F1A690=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 152, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLFu9F1BAsU=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 152, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLFu9F1CLR8=", + "_parent": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "model": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -280, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 256, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLFu9F07mo0=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLFu9F1A690=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLFu9F1BAsU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqGEk49nc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLFu9F1CLR8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLF4tF1iftI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqGUlOO9I=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLF4tF1jr/w=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1kg2Y=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 313, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1la4E=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 327, + "width": 72.51593017578125, + "height": 12, + "text": "Metaclass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1mW9o=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -480, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF4tF1ngPk=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -480, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLF4tF1kg2Y=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLF4tF1la4E=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLF4tF1mW9o=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLF4tF1ngPk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLF4tF1oP5U=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 184, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLF4tF1pEYI=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 700, + "top": 184, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLF4tF1qaMM=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "model": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -320, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 308, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLF4tF1jr/w=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLF4tF1oP5U=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLF4tF1pEYI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqGUlOO9I=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLF4tF1qaMM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLF/G12KFPg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqGUlk1Tc=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLF/G12LESY=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12MFWs=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 365, + "width": 121, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12Nq6M=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 379, + "width": 121, + "height": 12, + "text": "ImplementationClass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12OWK0=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -564, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLF/G12PipY=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -564, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 360, + "width": 131, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLF/G12MFWs=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLF/G12Nq6M=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLF/G12OWK0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLF/G12PipY=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLF/G12QJs8=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 208, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLF/G12Rf8c=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 208, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLF/HF2Sm8E=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "model": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -376, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 360, + "width": 131, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLF/G12LESY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLF/G12QJs8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLF/G12Rf8c=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqGUlk1Tc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLF/HF2Sm8E=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLGEPF2y6SI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqHEl6Zbo=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLGEPF2zyUI=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF20OuI=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 421, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF21TcM=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 435, + "width": 72.51593017578125, + "height": 12, + "text": "Type" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF22f/8=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -624, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGEPF23oz0=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -624, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 416, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLGEPF20OuI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLGEPF21TcM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLGEPF22f/8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLGEPF23oz0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLGEPF24D5Y=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 244, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLGEPF252Tg=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 244, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLGEPF26r38=", + "_parent": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "model": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -416, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 416, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLGEPF2zyUI=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLGEPF24D5Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLGEPF252Tg=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqHEl6Zbo=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLGEPF26r38=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLGI813a/Lo=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqHEmQAJ4=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLGI813bmDw=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3c6dc=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 477, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3dgjo=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 491, + "width": 72.51593017578125, + "height": 12, + "text": "Utility" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3eWQw=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -672, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLGI9F3fVUI=", + "_parent": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -672, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 472, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLGI9F3c6dc=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLGI9F3dgjo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLGI9F3eWQw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLGI9F3fVUI=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLGI9F3g9+w=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 284, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLGI9F3hmIE=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 704, + "top": 284, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLGI9F3i+8k=", + "_parent": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "model": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -448, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 472, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLGI813bmDw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLGI9F3g9+w=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLGI9F3hmIE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqHEmQAJ4=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLGI9F3i+8k=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNej158NLk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNej1590I0=", + "_parent": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 233, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNej15+8jc=", + "_parent": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 248, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNej15/BRY=", + "_parent": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "model": { + "$ref": "AAAAAAFFwLNej157D6Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 203, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNej158NLk=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLFUbV0ScDI=" + }, + "points": "720:224;652:224", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNej1590I0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNej15+8jc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNej15/BRY=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNkZ16NQ/Q=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNkZ16OhBQ=", + "_parent": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 281, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNkZ16PBtY=", + "_parent": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 296, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNkZ16QvLQ=", + "_parent": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "model": { + "$ref": "AAAAAAFFwLNkZ16Mp7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 251, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNkZ16NQ/Q=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLFu9F06sWk=" + }, + "points": "720:272;652:272", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNkZ16OhBQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNkZ16PBtY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNkZ16QvLQ=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNn916eDZQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNn916fvYQ=", + "_parent": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 333, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNn916guUU=", + "_parent": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 348, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNn916hjhM=", + "_parent": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "model": { + "$ref": "AAAAAAFFwLNn916d4Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 303, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNn916eDZQ=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLF4tF1iftI=" + }, + "points": "720:324;652:324", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNn916fvYQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNn916guUU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNn916hjhM=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNr116vKpE=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNr116weUM=", + "_parent": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 385, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNr116xjvo=", + "_parent": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 400, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNr116yGN0=", + "_parent": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "model": { + "$ref": "AAAAAAFFwLNr116u93k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 355, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNr116vKpE=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLF/G12KFPg=" + }, + "points": "720:376;652:376", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNr116weUM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNr116xjvo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNr116yGN0=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLNvdl7AF7U=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNvd17Byl0=", + "_parent": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 442, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNvd17Cmyo=", + "_parent": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 457, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLNvd17DduQ=", + "_parent": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "model": { + "$ref": "AAAAAAFFwLNvdl6/WJI=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 412, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLNvdl7AF7U=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLGEPF2y6SI=" + }, + "points": "720:433;652:433", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLNvd17Byl0=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLNvd17Cmyo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLNvd17DduQ=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLN0fl7RscA=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLN0fl7SzeE=", + "_parent": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 498, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLN0fl7Tq3c=", + "_parent": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 685, + "top": 513, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLN0f17UptI=", + "_parent": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "model": { + "$ref": "AAAAAAFFwLN0fl7QL9o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 686, + "top": 468, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLN0fl7RscA=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFJsZbpDNpnkE=" + }, + "tail": { + "$ref": "AAAAAAFFwLGI813a/Lo=" + }, + "points": "720:489;652:489", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLN0fl7SzeE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLN0fl7Tq3c=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLN0f17UptI=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwLRECl7stC8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLRECl7tsQE=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7u5vE=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 561, + "top": 545, + "width": 92.85594177246094, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7vrCk=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 561, + "top": 559, + "width": 92.85594177246094, + "height": 12, + "text": "UMLComponent" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7wqHs=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLRECl7xJrI=", + "_parent": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 540, + "width": 102.85594177246094, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLRECl7u5vE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLRECl7vrCk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLRECl7wqHs=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLRECl7xJrI=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 540, + "width": 102.85594177246094, + "height": 261, + "nameCompartment": { + "$ref": "AAAAAAFFwLRECl7tsQE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLR8CV8I99Y=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqH0nfZIU=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLR8CV8JFWY=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8Knxc=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 549, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8LWIw=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 563, + "width": 72.51593017578125, + "height": 12, + "text": "Entity" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8Mvqc=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLR8CV8NdIc=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 504, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 544, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLR8CV8Knxc=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLR8CV8LWIw=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLR8CV8Mvqc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLR8CV8NdIc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLR8CV8OpVY=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 748, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLR8CV8PW8k=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 748, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLR8Cl8QCTM=", + "_parent": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "model": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 336, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 544, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLR8CV8JFWY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLR8CV8OpVY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLR8CV8PW8k=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqH0nfZIU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLR8Cl8QCTM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSByF8w+gI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIEn1Irc=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSByF8x/Yc=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF8yMLo=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 597, + "width": 88.67578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF8zspI=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 611, + "width": 88.67578125, + "height": 12, + "text": "Implementation" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF80AnU=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 420, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSByF81b24=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 420, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 592, + "width": 98.67578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSByF8yMLo=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSByF8zspI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSByF80AnU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSByF81b24=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSByF82e10=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 768, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSByF83aE4=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 768, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSByF84G88=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "model": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -8, + "top": 280, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 592, + "width": 98.67578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSByF8x/Yc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSByF82e10=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSByF83aE4=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIEn1Irc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSByF84G88=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSIN19Ytdk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIUoLdrY=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSIN19ZQ0U=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9a8kE=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 653, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9bYBg=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 667, + "width": 72.51593017578125, + "height": 12, + "text": "Process" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9cqZQ=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 348, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSIOF9dI5U=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 348, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 648, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSIOF9a8kE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSIOF9bYBg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSIOF9cqZQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSIOF9dI5U=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSIOF9ekq0=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 800, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSIOF9fibc=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 800, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSIOF9gUN0=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "model": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -8, + "top": 232, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 648, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSIN19ZQ0U=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSIOF9ekq0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSIOF9fibc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIUoLdrY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSIOF9gUN0=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSO/1+AoeQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIkohl1g=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSO/1+BWGA=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSO/1+CG1s=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 709, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSO/1+DoUc=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 723, + "width": 72.51593017578125, + "height": 12, + "text": "Service" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSPAF+EVIo=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 312, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSPAF+FZR8=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "top": 312, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 704, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSO/1+CG1s=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSO/1+DoUc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSPAF+EVIo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSPAF+FZR8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSPAF+GnaI=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 844, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSPAF+Ho/s=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 716, + "top": 844, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSPAF+I3E8=", + "_parent": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "model": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -8, + "top": 208, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 704, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSO/1+BWGA=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSPAF+GnaI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSPAF+Ho/s=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIkohl1g=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSPAF+I3E8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLSXP1+o0Kw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqIko3HYE=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLSXP1+peko=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+qR3g=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 725, + "top": 765, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+rnfg=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 725, + "top": 779, + "width": 72.51593017578125, + "height": 12, + "text": "Subsystem" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+sqCM=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 252, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLSXP1+t4Mc=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 252, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 760, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLSXP1+qR3g=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLSXP1+rnfg=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLSXP1+sqCM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLSXP1+t4Mc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLSXP1+uKrA=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 880, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLSXP1+vdxM=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 880, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLSXP1+woFc=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "model": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": 168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 720, + "top": 760, + "width": 82.51593017578125, + "height": 36, + "nameCompartment": { + "$ref": "AAAAAAFFwLSXP1+peko=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLSXP1+uKrA=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLSXP1+vdxM=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqIko3HYE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLSXP1+woFc=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLV9gV/Ybio=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLV9gV/Z8CU=", + "_parent": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 569, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLV9gl/a23I=", + "_parent": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 584, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLV9gl/b3BU=", + "_parent": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "model": { + "$ref": "AAAAAAFFwLV9gV/Xhk4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 539, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLV9gV/Ybio=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLR8CV8I99Y=" + }, + "points": "720:560;658:560", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLV9gV/Z8CU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLV9gl/a23I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLV9gl/b3BU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWA0V/pWEg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWA0V/q2AI=", + "_parent": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 621, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWA0V/rrYc=", + "_parent": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 636, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWA0V/spgM=", + "_parent": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "model": { + "$ref": "AAAAAAFFwLWA0V/olVk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 591, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWA0V/pWEg=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSByF8w+gI=" + }, + "points": "720:612;658:612", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWA0V/q2AI=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWA0V/rrYc=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWA0V/spgM=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWEUV/6d1E=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWEUV/78Ig=", + "_parent": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 677, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWEUV/8eIM=", + "_parent": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 692, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWEUV/9T0A=", + "_parent": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "model": { + "$ref": "AAAAAAFFwLWEUV/5Qq4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 647, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWEUV/6d1E=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSIN19Ytdk=" + }, + "points": "720:668;658:668", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWEUV/78Ig=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWEUV/8eIM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWEUV/9T0A=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWIQWALE8M=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWIQWAMDo8=", + "_parent": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 737, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWIQWANo/A=", + "_parent": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 752, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWIQWAO6qA=", + "_parent": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "model": { + "$ref": "AAAAAAFFwLWIQWAKKPo=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 707, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWIQWALE8M=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSO/1+AoeQ=" + }, + "points": "720:728;658:728", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWIQWAMDo8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWIQWANo/A=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWIQWAO6qA=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLWMgWAcaQw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWMgWAd1rc=", + "_parent": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 789, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWMgWAeZ8k=", + "_parent": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 688, + "top": 804, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLWMgWAfxqc=", + "_parent": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "model": { + "$ref": "AAAAAAFFwLWMgWAb2Sk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 759, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLWMgWAcaQw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLRECl7stC8=" + }, + "tail": { + "$ref": "AAAAAAFFwLSXP1+o0Kw=" + }, + "points": "720:780;658:780", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLWMgWAd1rc=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLWMgWAeZ8k=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLWMgWAfxqc=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwL2WeWA5NQI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL2WeGA460g=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL2WeWA62bI=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "model": { + "$ref": "AAAAAAFFwL2WeGA460g=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA7mnk=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 61, + "top": 649, + "width": 98, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA8/Wk=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 61, + "top": 663, + "width": 98, + "height": 12, + "text": "UMLDependency" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA9NaM=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 144, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL2WeWA+CiM=", + "_parent": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "top": 144, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 56, + "top": 644, + "width": 108, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL2WeWA7mnk=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL2WeWA8/Wk=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL2WeWA9NaM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL2WeWA+CiM=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 56, + "top": 644, + "width": 108, + "height": 277, + "nameCompartment": { + "$ref": "AAAAAAFFwL2WeWA62bI=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL4D0mBZIkY=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqJkp/rUc=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL4D0mBaqmw=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D0mBbBNE=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 649, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D0mBc7go=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 663, + "width": 69.380859375, + "height": 12, + "text": "Create" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D02Bd3+g=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -48, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4D02BeWA8=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -48, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 644, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL4D0mBbBNE=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL4D0mBc7go=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL4D02Bd3+g=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL4D02BeWA8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL4D02Bf0q0=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 664, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL4D02BgYs8=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 664, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL4D02BhsHw=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "model": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 644, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL4D0mBaqmw=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL4D02Bf0q0=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL4D02BgYs8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqJkp/rUc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL4D02BhsHw=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL4h4WCCAAY=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqJ0qVBvA=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL4h4WCD82Y=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCE1YI=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 713, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCFbHY=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 727, + "width": 69.380859375, + "height": 12, + "text": "Call" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCG+Bo=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -108, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL4h4mCHhD8=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -108, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 708, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL4h4mCE1YI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL4h4mCFbHY=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL4h4mCG+Bo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL4h4mCHhD8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL4h4mCIEqs=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 708, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL4h4mCJktQ=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 708, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL4h4mCKdqI=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "model": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -72, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 708, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL4h4WCD82Y=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL4h4mCIEqs=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL4h4mCJktQ=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqJ0qVBvA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL4h4mCKdqI=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL45WWCr3cU=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqJ0qrDxY=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL45WWCsDkc=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCtTBI=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 769, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCuTW0=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 783, + "width": 69.380859375, + "height": 12, + "text": "Instantiate" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCv18Q=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -192, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL45WWCwZzE=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -192, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 764, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL45WWCtTBI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL45WWCuTW0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL45WWCv18Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL45WWCwZzE=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL45WWCxsuk=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 736, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL45WmCy+mU=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 736, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL45WmCzW1Y=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "model": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -128, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 764, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL45WWCsDkc=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL45WWCxsuk=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL45WmCy+mU=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqJ0qrDxY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL45WmCzW1Y=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL5hQGDUxa0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqKErBHOc=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL5hQGDVSBg=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDWrwI=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 825, + "width": 82.013671875, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDXPFU=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 839, + "width": 82.013671875, + "height": 12, + "text": "Responsibility" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDYpi0=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -252, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL5hQGDZAt8=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -252, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 820, + "width": 92.013671875, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL5hQGDWrwI=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL5hQGDXPFU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL5hQGDYpi0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL5hQGDZAt8=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL5hQGDa1nY=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 772, + "width": 91, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL5hQGDbixI=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 220, + "top": 772, + "width": 91, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL5hQGDcuS4=", + "_parent": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "model": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -32, + "top": -168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 820, + "width": 92.013671875, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL5hQGDVSBg=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL5hQGDa1nY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL5hQGDbixI=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqKErBHOc=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL5hQGDcuS4=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwL7KdWEqew0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqKErXxgY=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwL7KdWEr60A=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEspPc=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 241, + "top": 881, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEt7g0=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 241, + "top": 895, + "width": 69.380859375, + "height": 12, + "text": "Send" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEum1Q=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -324, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwL7KdWEv3Yk=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -60, + "top": -324, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 876, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL7KdWEspPc=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwL7KdWEt7g0=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwL7KdWEum1Q=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL7KdWEv3Yk=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwL7KdWEwzHc=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 216, + "top": 804, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwL7KdWExRWs=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 216, + "top": 804, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwL7KdWEyL0Q=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "model": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -40, + "top": -216, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 236, + "top": 876, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwL7KdWEr60A=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwL7KdWEwzHc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwL7KdWExRWs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqKErXxgY=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwL7KdWEyL0Q=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+LCGFgCjw=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+LCGFhp5w=", + "_parent": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 347, + "top": 634, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+LCGFihK4=", + "_parent": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 347, + "top": 619, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+LCGFjcmE=", + "_parent": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "model": { + "$ref": "AAAAAAFFwL+LCGFfPQs=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 347, + "top": 664, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+LCGFgCjw=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwK/k1ly1mNU=" + }, + "tail": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "points": "314:655;380:655", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+LCGFhp5w=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+LCGFihK4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+LCGFjcmE=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+O8GFxUF4=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+O8GFyCzY=", + "_parent": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 677, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+O8GFzT+A=", + "_parent": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 692, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+O8GF0qhg=", + "_parent": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "model": { + "$ref": "AAAAAAFFwL+O8GFwbog=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 647, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+O8GFxUF4=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL4D0mBZIkY=" + }, + "points": "236:668;163:668", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+O8GFyCzY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+O8GFzT+A=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+O8GF0qhg=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+SkWGC/a4=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+SkWGDbeA=", + "_parent": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 731, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+SkWGEkxM=", + "_parent": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 746, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+SkWGFVnU=", + "_parent": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "model": { + "$ref": "AAAAAAFFwL+SkWGBCOg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 701, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+SkWGC/a4=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL4h4WCCAAY=" + }, + "points": "236:722;163:722", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+SkWGDbeA=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+SkWGEkxM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+SkWGFVnU=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+WL2GTesQ=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+WL2GUDZ4=", + "_parent": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 797, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+WL2GVfH8=", + "_parent": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 812, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+WL2GW4Ys=", + "_parent": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "model": { + "$ref": "AAAAAAFFwL+WL2GScgY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 767, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+WL2GTesQ=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL45WWCr3cU=" + }, + "points": "236:788;163:788", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+WL2GUDZ4=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+WL2GVfH8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+WL2GW4Ys=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+Z72GkT5Y=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+Z72GllyU=", + "_parent": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 854, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+Z72Gm6K8=", + "_parent": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 869, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+Z72GnawI=", + "_parent": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "model": { + "$ref": "AAAAAAFFwL+Z72GjzGw=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 824, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+Z72GkT5Y=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL5hQGDUxa0=" + }, + "points": "236:845;163:845", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+Z72GllyU=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+Z72Gm6K8=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+Z72GnawI=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwL+eh2G1gXM=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+eh2G2oXg=", + "_parent": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 910, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+eh2G3GpE=", + "_parent": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 198, + "top": 925, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwL+eh2G4woY=", + "_parent": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "model": { + "$ref": "AAAAAAFFwL+eh2G01aU=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 199, + "top": 880, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwL+eh2G1gXM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwL2WeWA5NQI=" + }, + "tail": { + "$ref": "AAAAAAFFwL7KdWEqew0=" + }, + "points": "236:901;163:901", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwL+eh2G2oXg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwL+eh2G3GpE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwL+eh2G4woY=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwMFq1GHZe+E=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMFq1GHa5CM=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "model": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHbxIU=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 561, + "top": 33, + "width": 93, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHc3zA=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 561, + "top": 47, + "width": 93, + "height": 12, + "text": "UMLAbstraction" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHdTFI=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMFq1GHeicg=", + "_parent": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -12, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 28, + "width": 103, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMFq1GHbxIU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMFq1GHc3zA=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMFq1GHdTFI=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMFq1GHeicg=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 28, + "width": 103, + "height": 153, + "nameCompartment": { + "$ref": "AAAAAAFFwMFq1GHa5CM=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMGle2H29zI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqKksmed8=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMGle2H3I+8=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H4B8s=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 29, + "width": 110.396484375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H5FWo=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 745, + "top": 43, + "width": 110.396484375, + "height": 12, + "text": "Derive" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H6wQw=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGle2H7ifs=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 252, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 24, + "width": 120.396484375, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMGle2H4B8s=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMGle2H5FWo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMGle2H6wQw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMGle2H7ifs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMGle2H8ZWU=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "subViews": [ + { + "_type": "UMLAttributeView", + "_id": "AAAAAAFFwMJPAWJ40Vg=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H8ZWU=" + }, + "model": { + "$ref": "AAAAAAFFwMJO92J1Y/s=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 65, + "width": 110.396484375, + "height": 12, + "text": "+computation: String", + "horizontalAlignment": 0 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 60, + "width": 127.16787719726562, + "height": 22 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMGle2H9VL8=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 824, + "top": 60, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMGle2H+hpQ=", + "_parent": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "model": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 168, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 24, + "width": 120.396484375, + "height": 58, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwMGle2H3I+8=" + }, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMGle2H8ZWU=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMGle2H9VL8=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqKksmed8=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMGle2H+hpQ=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMGo6mIepMc=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqK0s9CwU=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMGo6mIfS5g=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIgcys=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 101, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIha40=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 745, + "top": 115, + "width": 69.380859375, + "height": 12, + "text": "Refine" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIiGvE=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 276, + "top": 120, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGo6mIjVCs=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 276, + "top": 120, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 96, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMGo6mIgcys=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMGo6mIha40=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMGo6mIiGvE=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMGo6mIjVCs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMGo6mIkY0Y=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 832, + "top": 172, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMGo6mIlYhc=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 832, + "top": 172, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMGo6mImbZE=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "model": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 184, + "top": 80, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 96, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwMGo6mIfS5g=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMGo6mIkY0Y=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMGo6mIlYhc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqK0s9CwU=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMGo6mImbZE=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMGrimJGJ0s=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqK0tTuyw=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMGrimJHZ7Y=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJIfxU=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 745, + "top": 153, + "width": 69.380859375, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJJ7uc=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 745, + "top": 167, + "width": 69.380859375, + "height": 12, + "text": "Trace" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJKI9M=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 324, + "top": 168, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMGrimJL3ag=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 324, + "top": 168, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 148, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMGrimJIfxU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMGrimJJ7uc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMGrimJKI9M=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMGrimJL3ag=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMGrimJMCIQ=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 848, + "top": 240, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMGrimJNPbE=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 848, + "top": 240, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMGrimJOkXc=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "model": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 216, + "top": 112, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 740, + "top": 148, + "width": 79.380859375, + "height": 36, + "autoResize": true, + "nameCompartment": { + "$ref": "AAAAAAFFwMGrimJHZ7Y=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMGrimJMCIQ=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMGrimJNPbE=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqK0tTuyw=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMGrimJOkXc=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMLTm2KEAI0=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLTm2KFRRg=", + "_parent": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 61, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLTm2KGrkQ=", + "_parent": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 76, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLTm2KHZTE=", + "_parent": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "model": { + "$ref": "AAAAAAFFwMLTmmKDF1M=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 699, + "top": 31, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLTm2KEAI0=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "tail": { + "$ref": "AAAAAAFFwMGle2H29zI=" + }, + "points": "740:52;658:52", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMLTm2KFRRg=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMLTm2KGrkQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMLTm2KHZTE=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMLXQmKVDuM=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLXQmKW+3c=", + "_parent": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 121, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLXQmKXpUQ=", + "_parent": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 136, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLXQmKYWOg=", + "_parent": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "model": { + "$ref": "AAAAAAFFwMLXQmKUyu0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 699, + "top": 91, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLXQmKVDuM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "tail": { + "$ref": "AAAAAAFFwMGo6mIepMc=" + }, + "points": "740:112;658:112", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMLXQmKW+3c=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMLXQmKXpUQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMLXQmKYWOg=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMLbmmKmAvI=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLbmmKnMuM=", + "_parent": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 169, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLbmmKonTw=", + "_parent": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 698, + "top": 184, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMLbmmKpbLQ=", + "_parent": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "model": { + "$ref": "AAAAAAFFwMLbmmKloGE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 699, + "top": 139, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMLbmmKmAvI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMFq1GHZe+E=" + }, + "tail": { + "$ref": "AAAAAAFFwMGrimJGJ0s=" + }, + "points": "740:160;658:160", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMLbmmKnMuM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMLbmmKonTw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMLbmmKpbLQ=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwMYNEWK8jeA=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMYNEWK9Wb8=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK8jeA=" + }, + "model": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWK++fU=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 561, + "top": 833, + "width": 91, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWK/PY8=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 561, + "top": 847, + "width": 91, + "height": 12, + "text": "UMLPackage" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWLAHjA=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMYNEWLBm9I=", + "_parent": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 828, + "width": 101, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMYNEWK++fU=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMYNEWK/PY8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMYNEWLAHjA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMYNEWLBm9I=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 556, + "top": 828, + "width": 101, + "height": 101, + "nameCompartment": { + "$ref": "AAAAAAFFwMYNEWK9Wb8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMdnrWLZAY8=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqLUuNRhM=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMdnrWLaXkY=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLbib0=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 729, + "top": 837, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLclU4=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 729, + "top": 851, + "width": 72.51593017578125, + "height": 12, + "text": "Framework" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLdBNU=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMdnrmLeF4I=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 832, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMdnrmLbib0=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMdnrmLclU4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMdnrmLdBNU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMdnrmLeF4I=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMdnrmLf950=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 868, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMdnrmLgzek=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 878, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMdnrmLhmpQ=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "model": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 832, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwMdnrWLaXkY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMdnrmLf950=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMdnrmLgzek=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqLUuNRhM=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMdnrmLhmpQ=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwMeIHGMCTCk=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqLUujT3E=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwMeIHGMDiPY=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMEN4g=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 729, + "top": 893, + "width": 75.345703125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMFxQc=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 729, + "top": 907, + "width": 75.345703125, + "height": 12, + "text": "ModelLibrary" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMG6CQ=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -60, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwMeIHGMH2dQ=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -60, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 888, + "width": 85.345703125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMeIHGMEN4g=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwMeIHGMFxQc=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwMeIHGMG6CQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMeIHGMH2dQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwMeIHGMI7hI=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 904, + "width": 85, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwMeIHGMJi90=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 914, + "width": 85, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwMeIHGMK1pc=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "model": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "top": -40, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 724, + "top": 888, + "width": 85.345703125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwMeIHGMDiPY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwMeIHGMI7hI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwMeIHGMJi90=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqLUujT3E=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwMeIHGMK1pc=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMevo2Mq4Ew=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMevo2Mr7wQ=", + "_parent": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 861, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMevo2Msv/w=", + "_parent": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 876, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMevo2MtL5c=", + "_parent": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "model": { + "$ref": "AAAAAAFFwMevo2MpIU4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 690, + "top": 831, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMevo2Mq4Ew=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMYNEWK8jeA=" + }, + "tail": { + "$ref": "AAAAAAFFwMdnrWLZAY8=" + }, + "points": "724:852;656:852", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMevo2Mr7wQ=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMevo2Msv/w=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMevo2MtL5c=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwMe0G2M7rmg=", + "_parent": { + "$ref": "AAAAAAFElnFUQFS4mT4=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMe0G2M8gls=", + "_parent": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 917, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMe0G2M9WEg=", + "_parent": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 689, + "top": 932, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwMe0G2M+CD8=", + "_parent": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "model": { + "$ref": "AAAAAAFFwMe0G2M69PQ=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 690, + "top": 887, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwMe0G2M7rmg=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwMYNEWK8jeA=" + }, + "tail": { + "$ref": "AAAAAAFFwMeIHGMCTCk=" + }, + "points": "724:908;656:908", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwMe0G2M8gls=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwMe0G2M9WEg=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwMe0G2M+CD8=" + } + } + ] + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFElnFrT1S7Kic=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLClassifier" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFElnF1nFTY/Sw=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Realization", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFElnGGLFUFZFA=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "source": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "target": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFElnF1nFTZHOU=", + "_parent": { + "$ref": "AAAAAAFElnF1nFTY/Sw=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFElnJRglVKSoc=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Specification", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFElnKVuVV4pBU=", + "_parent": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "source": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "target": { + "$ref": "AAAAAAFElnFrT1S7Kic=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFElnJRglVLifA=", + "_parent": { + "$ref": "AAAAAAFElnJRglVKSoc=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFJsYgDTM+Z6E=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "entity", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFJsZx3DOCac8=", + "_parent": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "source": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFJsYgDTM/qY8=", + "_parent": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "width": 40, + "height": 40, + "content": "var w = rect.getWidth(),\n m = w / 10;\ncanvas.fillEllipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.ellipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.line(rect.x1 + m, rect.y2 - m, rect.x2 - m, rect.y2 - m);\n" + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFJsZbpDNobIs=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLClass" + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwKqhJFq06mA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLArtifact" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKsvdVrRJUQ=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "File", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK5AeFyZpVg=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "source": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "isAbstract": true, + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKsvdVrSLo0=", + "_parent": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKtwS1r6wew=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Document", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKzkslvX4gU=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "source": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK4k1VxEEpM=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "source": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKtwS1r7XqE=", + "_parent": { + "$ref": "AAAAAAFFwKtwS1r6wew=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKuBulsidLQ=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Executable", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKzsCVvo11g=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK4o4VxVx00=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKuBulsjhp0=", + "_parent": { + "$ref": "AAAAAAFFwKuBulsidLQ=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKuIMltKnQQ=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Library", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKzxcVv56Dg=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK4tiVxmVJM=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "source": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKuIMltLkmg=", + "_parent": { + "$ref": "AAAAAAFFwKuIMltKnQQ=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKuS0ltysPk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Script", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKz3OVwK9hs=", + "_parent": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "source": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK41YVx3Hr0=", + "_parent": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "source": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKuS0ltz9pw=", + "_parent": { + "$ref": "AAAAAAFFwKuS0ltysPk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwKueMVuaLXM=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Source", + "ownedElements": [ + { + "_type": "UMLGeneralization", + "_id": "AAAAAAFFwKz9mFwbfDg=", + "_parent": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "source": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "target": { + "$ref": "AAAAAAFFwKsvdVrRJUQ=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwK47MFyIL/c=", + "_parent": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "source": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "target": { + "$ref": "AAAAAAFFwKqhJFq06mA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwKueMlubedY=", + "_parent": { + "$ref": "AAAAAAFFwKueMVuaLXM=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwK/k1ly00Ec=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLBehavioralFeature" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLBdO1zQosE=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Destroy", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLDMaFz5C14=", + "_parent": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "source": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "target": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLBdO1zR7Ak=", + "_parent": { + "$ref": "AAAAAAFFwLBdO1zQosE=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLFUbV0QQVA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Auxiliary", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNej157D6Y=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "source": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLFUbV0RoPU=", + "_parent": { + "$ref": "AAAAAAFFwLFUbV0QQVA=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLFu8104he4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Focus", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNkZ16Mp7Y=", + "_parent": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "source": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLFu9F05JGE=", + "_parent": { + "$ref": "AAAAAAFFwLFu8104he4=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLF4tF1g4No=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Metaclass", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNn916d4Yc=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "source": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLF4tF1h94I=", + "_parent": { + "$ref": "AAAAAAFFwLF4tF1g4No=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLF/G12IJ54=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "ImplementationClass", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNr116u93k=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "source": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLF/G12JIns=", + "_parent": { + "$ref": "AAAAAAFFwLF/G12IJ54=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLGEO12wqJ8=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Type", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLNvdl6/WJI=", + "_parent": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "source": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLGEPF2x7bg=", + "_parent": { + "$ref": "AAAAAAFFwLGEO12wqJ8=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLGI813YL3s=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Utility", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLN0fl7QL9o=", + "_parent": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "source": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLGI813ZPxY=", + "_parent": { + "$ref": "AAAAAAFFwLGI813YL3s=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLProfileDiagram", + "_id": "AAAAAAFFwLKxU14QPaE=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Robustness Stereotypes", + "ownedViews": [ + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwLL0NF4VWXk=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqMEwRREE=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLL0NF4WzoE=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4X88I=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 217, + "top": 89, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4YSt8=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 217, + "top": 103, + "width": 72.51593017578125, + "height": 12, + "text": "entity" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4ZQaQ=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -1065, + "top": -270, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLL0NF4asxs=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -1065, + "top": -270, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 84, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLL0NF4X88I=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLL0NF4YSt8=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLL0NF4ZQaQ=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLL0NF4asxs=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwLL0NF4bgXg=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 92, + "top": -28, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwLL0NF4cZ88=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 92, + "top": -18, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwLL0NF4dJaE=", + "_parent": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "model": { + "$ref": "AAAAAAFFJsYgDTM+Z6E=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -710, + "top": -180, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 84, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwLL0NF4WzoE=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwLL0NF4bgXg=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwLL0NF4cZ88=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqMEwRREE=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwLL0NF4dJaE=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwLMO8l44tWU=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwLMO8l45ook=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "model": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l46Nac=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 33, + "top": 33, + "width": 79, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l47xu4=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 33, + "top": 47, + "width": 79, + "height": 12, + "text": "UMLClass" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l48V+s=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -489, + "top": -414, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwLMO8l490+g=", + "_parent": { + "$ref": "AAAAAAFFwLMO8l45ook=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -489, + "top": -414, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 28, + "top": 28, + "width": 89, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLMO8l46Nac=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwLMO8l47xu4=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwLMO8l48V+s=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLMO8l490+g=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 28, + "top": 28, + "width": 89, + "height": 149, + "nameCompartment": { + "$ref": "AAAAAAFFwLMO8l45ook=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwLMO814+17w=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLMO814/vLk=", + "_parent": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 109, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLMO815A2sw=", + "_parent": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 124, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwLMO815BAcU=", + "_parent": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "model": { + "$ref": "AAAAAAFFJsZx3DOCac8=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 164, + "top": 79, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwLMO814+17w=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "tail": { + "$ref": "AAAAAAFFwLL0NF4VWXk=" + }, + "points": "212:100;116:100", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwLMO814/vLk=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwLMO815A2sw=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwLMO815BAcU=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwx8Q/35wG9A=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqMUw9MBk=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwx8Q/35xpyY=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/35yVU8=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 217, + "top": 37, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/35z0VE=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 217, + "top": 51, + "width": 72.51593017578125, + "height": 12, + "text": "control" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/3506PU=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -336, + "top": -312, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwx8Q/351cP0=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -336, + "top": -312, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 32, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwx8Q/35yVU8=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwx8Q/35z0VE=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwx8Q/3506PU=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwx8Q/351cP0=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwx8RAH52xko=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 76, + "top": -4, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwx8RAH53MWs=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 76, + "top": 6, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwx8RAH54kik=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "model": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": -224, + "top": -208, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 32, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwx8Q/35xpyY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwx8RAH52xko=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwx8RAH53MWs=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqMUw9MBk=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwx8RAH54kik=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwyAHeH6a9yk=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwyAHeX6b9JY=", + "_parent": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 61, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwyAHeX6cKyY=", + "_parent": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 76, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwyAHeX6dvIk=", + "_parent": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "model": { + "$ref": "AAAAAAFFwyAHeH6Znas=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 164, + "top": 31, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwyAHeH6a9yk=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "tail": { + "$ref": "AAAAAAFFwx8Q/35wG9A=" + }, + "points": "212:52;116:52", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwyAHeX6b9JY=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwyAHeX6cKyY=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwyAHeX6dvIk=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFw0h1/QXNqo4=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqMkxa+TA=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFw0h1/gXOBI4=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXPA/w=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 217, + "top": 141, + "width": 72.51593017578125, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXQ/LI=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 217, + "top": 155, + "width": 72.51593017578125, + "height": 12, + "text": "boundary" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXRrB4=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -360, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFw0h1/gXSVgA=", + "_parent": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 96, + "top": -360, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 136, + "width": 82.51593017578125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFw0h1/gXPA/w=" + }, + "nameLabel": { + "$ref": "AAAAAAFFw0h1/gXQ/LI=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFw0h1/gXRrB4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFw0h1/gXSVgA=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFw0h1/gXTCRY=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -20, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFw0h1/gXUu1g=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -10, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFw0h1/gXVEL8=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "model": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 64, + "top": -240, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 212, + "top": 136, + "width": 82.51593017578125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFw0h1/gXOBI4=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFw0h1/gXTCRY=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFw0h1/gXUu1g=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqMkxa+TA=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFw0h1/gXVEL8=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFw0o5p5IVMGM=", + "_parent": { + "$ref": "AAAAAAFFwLKxU14QPaE=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFw0o5p5IW5Js=", + "_parent": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 165, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFw0o5p5IXSKA=", + "_parent": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 163, + "top": 180, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFw0o5p5IY/GE=", + "_parent": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "model": { + "$ref": "AAAAAAFFw0o5ppIUB2s=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 164, + "top": 135, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFw0o5p5IVMGM=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwLMO8l44tWU=" + }, + "tail": { + "$ref": "AAAAAAFFw0h1/QXNqo4=" + }, + "points": "212:156;116:156", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFw0o5p5IW5Js=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFw0o5p5IXSKA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFw0o5p5IY/GE=" + } + } + ] + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwLRECl7r1R4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLComponent" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLR8CF8G68k=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Entity", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLV9gV/Xhk4=", + "_parent": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "source": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLR8CF8HOik=", + "_parent": { + "$ref": "AAAAAAFFwLR8CF8G68k=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSByF8umMo=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Implementation", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWA0V/olVk=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "source": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSByF8vzKA=", + "_parent": { + "$ref": "AAAAAAFFwLSByF8umMo=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSIN19WMnE=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Process", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWEUV/5Qq4=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "source": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSIN19XVng=", + "_parent": { + "$ref": "AAAAAAFFwLSIN19WMnE=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSO/19+cMY=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Service", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWIQWAKKPo=", + "_parent": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "source": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSO/19/YUk=", + "_parent": { + "$ref": "AAAAAAFFwLSO/19+cMY=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwLSXP1+mTVk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Subsystem", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwLWMgWAb2Sk=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "source": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwLSXP1+njeI=", + "_parent": { + "$ref": "AAAAAAFFwLSXP1+mTVk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwL2WeGA460g=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLDependency" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL4D0mBXwu4=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Create", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+LCGFfPQs=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "source": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "target": { + "$ref": "AAAAAAFFwK/k1ly00Ec=" + } + }, + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+O8GFwbog=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "source": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL4D0mBYXVU=", + "_parent": { + "$ref": "AAAAAAFFwL4D0mBXwu4=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL4h4WCAEkg=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Call", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+SkWGBCOg=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "source": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL4h4WCBKPU=", + "_parent": { + "$ref": "AAAAAAFFwL4h4WCAEkg=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL45WWCpJ0o=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Instantiate", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+WL2GScgY=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "source": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL45WWCq/8I=", + "_parent": { + "$ref": "AAAAAAFFwL45WWCpJ0o=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL5hP2DSEFk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Responsibility", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+Z72GjzGw=", + "_parent": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "source": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL5hQGDTCjI=", + "_parent": { + "$ref": "AAAAAAFFwL5hP2DSEFk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwL7KdWEoDhA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Send", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwL+eh2G01aU=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "source": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "target": { + "$ref": "AAAAAAFFwL2WeGA460g=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwL7KdWEpx8M=", + "_parent": { + "$ref": "AAAAAAFFwL7KdWEoDhA=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwMFq1GHYSKM=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLAbstraction" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMGlemH0Tq8=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Derive", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMLTmmKDF1M=", + "_parent": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "source": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "target": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + } + } + ], + "attributes": [ + { + "_type": "UMLAttribute", + "_id": "AAAAAAFFwMJO92J1Y/s=", + "_parent": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "name": "computation", + "type": "String" + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMGlemH1M8k=", + "_parent": { + "$ref": "AAAAAAFFwMGlemH0Tq8=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMGo6mIcITc=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Refine", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMLXQmKUyu0=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "source": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "target": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMGo6mIdBMU=", + "_parent": { + "$ref": "AAAAAAFFwMGo6mIcITc=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMGrimJEvvk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Trace", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMLbmmKloGE=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "source": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "target": { + "$ref": "AAAAAAFFwMFq1GHYSKM=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMGrimJF+z8=", + "_parent": { + "$ref": "AAAAAAFFwMGrimJEvvk=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwMYNEWK7ItA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLPackage" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMdnrWLXWLA=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Framework", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMevo2MpIU4=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "source": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "target": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMdnrWLYFcM=", + "_parent": { + "$ref": "AAAAAAFFwMdnrWLXWLA=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwMeIHGMAPDc=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "ModelLibrary", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwMe0G2M69PQ=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "source": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "target": { + "$ref": "AAAAAAFFwMYNEWK7ItA=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwMeIHGMBKKk=", + "_parent": { + "$ref": "AAAAAAFFwMeIHGMAPDc=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLProfileDiagram", + "_id": "AAAAAAFFwQCuI7bLjDk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "StandardProfileL3", + "ownedViews": [ + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwQHC9rbwK6A=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQHC9rbx7Lo=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbwK6A=" + }, + "model": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rbyTUQ=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 45, + "top": 121, + "width": 107, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rbzlgQ=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 45, + "top": 135, + "width": 107, + "height": 12, + "text": "UMLModel" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rb0L9g=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -168, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHC9rb1XIk=", + "_parent": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -48, + "top": -168, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 116, + "width": 117, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQHC9rbyTUQ=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQHC9rbzlgQ=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQHC9rb0L9g=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQHC9rb1XIk=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 116, + "width": 117, + "height": 97, + "nameCompartment": { + "$ref": "AAAAAAFFwQHC9rbx7Lo=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwQHjjbcLQPM=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqN0zJrS0=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQHjjbcMlRY=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcNrIk=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 229, + "top": 41, + "width": 115, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcOnWs=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 229, + "top": 55, + "width": 115, + "height": 12, + "text": "BuildComponent" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcPLIM=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -48, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQHjjbcQOtc=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -48, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 36, + "width": 125, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQHjjbcNrIk=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQHjjbcOnWs=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQHjjbcPLIM=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQHjjbcQOtc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwQHjjrcRsYI=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 56, + "width": 105, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwQHjjrcSCoc=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 66, + "width": 105, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwQHjjrcTWEY=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "model": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -32, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 36, + "width": 125, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwQHjjbcMlRY=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwQHjjrcRsYI=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwQHjjrcSCoc=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqN0zJrS0=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwQHjjrcTWEY=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwQIPLLc0Q7M=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqOEzfvr8=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQIPLLc1jrg=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc2rps=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 229, + "top": 121, + "width": 83, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc3wdo=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 229, + "top": 135, + "width": 83, + "height": 12, + "text": "Metamodel" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc4SHA=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -84, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIPLLc5Qvc=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 108, + "top": -84, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 116, + "width": 93, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQIPLLc2rps=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQIPLLc3wdo=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQIPLLc4SHA=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQIPLLc5Qvc=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwQIPLLc63qc=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 124, + "width": 81, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwQIPLbc7y2w=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 260, + "top": 134, + "width": 81, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwQIPLbc8jC8=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "model": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 72, + "top": -56, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 116, + "width": 93, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwQIPLLc1jrg=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwQIPLLc63qc=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwQIPLbc7y2w=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqOEzfvr8=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwQIPLbc8jC8=" + } + }, + { + "_type": "UMLStereotypeView", + "_id": "AAAAAAFFwQIrDLddK/I=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "subViews": [ + { + "_type": "UMLReceptionCompartmentView", + "_id": "AAAAAAF5P5kqOEz1SWk=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "width": 10, + "height": 10 + }, + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQIrDLdevJE=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdfcec=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "font": "Arial;12;0", + "containerExtending": true, + "left": 229, + "top": 181, + "width": 83, + "height": 12, + "text": "«stereotype»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdgsTM=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "font": "Arial;12;1", + "containerExtending": true, + "left": 229, + "top": 195, + "width": 83, + "height": 12, + "text": "SystemModel" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdhAR0=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": -168, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQIrDLdiiuQ=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 120, + "top": -168, + "height": 12, + "horizontalAlignment": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 176, + "width": 93, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQIrDLdfcec=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQIrDLdgsTM=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQIrDLdhAR0=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQIrDLdiiuQ=" + } + }, + { + "_type": "UMLAttributeCompartmentView", + "_id": "AAAAAAFFwQIrDLdjYt8=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 264, + "top": 156, + "width": 88, + "height": 10 + }, + { + "_type": "UMLOperationCompartmentView", + "_id": "AAAAAAFFwQIrDLdkEoo=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 264, + "top": 166, + "width": 88, + "height": 10 + }, + { + "_type": "UMLTemplateParameterCompartmentView", + "_id": "AAAAAAFFwQIrDLdlkbo=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "model": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 80, + "top": -112, + "width": 10, + "height": 10 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "left": 224, + "top": 176, + "width": 93, + "height": 37, + "nameCompartment": { + "$ref": "AAAAAAFFwQIrDLdevJE=" + }, + "suppressAttributes": true, + "suppressOperations": true, + "attributeCompartment": { + "$ref": "AAAAAAFFwQIrDLdjYt8=" + }, + "operationCompartment": { + "$ref": "AAAAAAFFwQIrDLdkEoo=" + }, + "receptionCompartment": { + "$ref": "AAAAAAF5P5kqOEz1SWk=" + }, + "templateParameterCompartment": { + "$ref": "AAAAAAFFwQIrDLdlkbo=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwQLOH7eRZzI=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLOH7eSzo8=", + "_parent": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 145, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLOILeTl4U=", + "_parent": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 160, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLOILeU1qE=", + "_parent": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "model": { + "$ref": "AAAAAAFFwQLOH7eQuvE=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 190, + "top": 115, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLOH7eRZzI=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwQHC9rbwK6A=" + }, + "tail": { + "$ref": "AAAAAAFFwQIPLLc0Q7M=" + }, + "points": "224:136;156:136", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwQLOH7eSzo8=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQLOILeTl4U=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQLOILeU1qE=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwQLSp7eim6s=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLSp7ejdqM=", + "_parent": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 205, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLSp7ekT+I=", + "_parent": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 220, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQLSp7el67w=", + "_parent": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "model": { + "$ref": "AAAAAAFFwQLSp7eh5o0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 190, + "top": 175, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQLSp7eim6s=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwQHC9rbwK6A=" + }, + "tail": { + "$ref": "AAAAAAFFwQIrDLddK/I=" + }, + "points": "224:196;156:196", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwQLSp7ejdqM=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQLSp7ekT+I=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQLSp7el67w=" + } + }, + { + "_type": "UMLMetaClassView", + "_id": "AAAAAAFFwQdYRLfPnZs=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "UMLNameCompartmentView", + "_id": "AAAAAAFFwQdYRLfQc8o=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfPnZs=" + }, + "model": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + }, + "subViews": [ + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfRm/U=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 45, + "top": 41, + "width": 107, + "height": 12, + "text": "«metaClass»" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfSwyU=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "fillColor": "#e2e2e2", + "font": "Arial;12;1", + "containerExtending": true, + "left": 45, + "top": 55, + "width": 107, + "height": 12, + "text": "UMLComponent" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfTyV4=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -702, + "top": -954, + "width": 150.64784240722656, + "height": 12, + "text": "(from UMLStandardProfile)" + }, + { + "_type": "LabelView", + "_id": "AAAAAAFFwQdYRLfUafY=", + "_parent": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + }, + "visible": false, + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": -702, + "top": -954, + "height": 12, + "horizontalAlignment": 1 + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 36, + "width": 117, + "height": 36, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQdYRLfRm/U=" + }, + "nameLabel": { + "$ref": "AAAAAAFFwQdYRLfSwyU=" + }, + "namespaceLabel": { + "$ref": "AAAAAAFFwQdYRLfTyV4=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQdYRLfUafY=" + } + } + ], + "fillColor": "#e2e2e2", + "font": "Arial;12;0", + "containerExtending": true, + "left": 40, + "top": 36, + "width": 117, + "height": 41, + "nameCompartment": { + "$ref": "AAAAAAFFwQdYRLfQc8o=" + } + }, + { + "_type": "UMLExtensionView", + "_id": "AAAAAAFFwQgwnLf7u0w=", + "_parent": { + "$ref": "AAAAAAFFwQCuI7bLjDk=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "subViews": [ + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQgwnLf82nE=", + "_parent": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 64, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQgwnbf9bFo=", + "_parent": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "visible": null, + "font": "Arial;12;0", + "containerExtending": true, + "left": 189, + "top": 79, + "height": 12, + "alpha": 1.5707963267948966, + "distance": 30, + "hostEdge": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "edgePosition": 1 + }, + { + "_type": "EdgeLabelView", + "_id": "AAAAAAFFwQgwnbf+ckE=", + "_parent": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "model": { + "$ref": "AAAAAAFFwQgwnLf6Q+0=" + }, + "visible": false, + "font": "Arial;12;0", + "containerExtending": true, + "left": 190, + "top": 34, + "height": 12, + "alpha": -1.5707963267948966, + "distance": 15, + "hostEdge": { + "$ref": "AAAAAAFFwQgwnLf7u0w=" + }, + "edgePosition": 1 + } + ], + "font": "Arial;12;0", + "containerExtending": true, + "head": { + "$ref": "AAAAAAFFwQdYRLfPnZs=" + }, + "tail": { + "$ref": "AAAAAAFFwQHjjbcLQPM=" + }, + "lineStyle": 1, + "points": "223:55;157:55", + "showVisibility": true, + "nameLabel": { + "$ref": "AAAAAAFFwQgwnLf82nE=" + }, + "stereotypeLabel": { + "$ref": "AAAAAAFFwQgwnbf9bFo=" + }, + "propertyLabel": { + "$ref": "AAAAAAFFwQgwnbf+ckE=" + } + } + ] + }, + { + "_type": "UMLMetaClass", + "_id": "AAAAAAFFwQHC9rbvUkk=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "UMLModel" + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwQHjjbcJ4Ks=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "BuildComponent", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwQgwnLf6Q+0=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "source": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "target": { + "$ref": "AAAAAAFFwLRECl7r1R4=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwQHjjbcKYjk=", + "_parent": { + "$ref": "AAAAAAFFwQHjjbcJ4Ks=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwQIPLLcykEY=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "Metamodel", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwQLOH7eQuvE=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "source": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "target": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwQIPLLcz/1A=", + "_parent": { + "$ref": "AAAAAAFFwQIPLLcykEY=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwQIrDLdbTko=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "SystemModel", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwQLSp7eh5o0=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "source": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "target": { + "$ref": "AAAAAAFFwQHC9rbvUkk=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwQIrDLdcjKw=", + "_parent": { + "$ref": "AAAAAAFFwQIrDLdbTko=" + }, + "width": 40, + "height": 40 + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFwx8Q/35u/80=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "control", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFwyAHeH6Znas=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "source": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFwx8Q/35vMf0=", + "_parent": { + "$ref": "AAAAAAFFwx8Q/35u/80=" + }, + "width": 40, + "height": 40, + "content": "var w = rect.getWidth(),\n h = w / 2,\n m = w / 8;\ncanvas.fillEllipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.ellipse(rect.x1 + m, rect.y1 + m, rect.x2 - m, rect.y2 - m);\ncanvas.line(rect.x1 + h, rect.y1 + m, rect.x1 + h + m, rect.y1);\ncanvas.line(rect.x1 + h, rect.y1 + m, rect.x1 + h + m, rect.y1 + 2 * m);\n" + } + }, + { + "_type": "UMLStereotype", + "_id": "AAAAAAFFw0h1/QXL978=", + "_parent": { + "$ref": "AAAAAAFElnEzslS1AuE=" + }, + "name": "boundary", + "ownedElements": [ + { + "_type": "UMLExtension", + "_id": "AAAAAAFFw0o5ppIUB2s=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "source": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "target": { + "$ref": "AAAAAAFFJsZbpDNobIs=" + } + } + ], + "icon": { + "_type": "UMLImage", + "_id": "AAAAAAFFw0h1/QXM/ss=", + "_parent": { + "$ref": "AAAAAAFFw0h1/QXL978=" + }, + "width": "50", + "height": 40, + "content": "var w = rect.getWidth(),\n h = rect.getHeight(),\n m = w / 5;\ncanvas.fillEllipse(rect.x1 + m, rect.y1, rect.x2, rect.y2);\ncanvas.ellipse(rect.x1 + m, rect.y1, rect.x2, rect.y2);\ncanvas.line(rect.x1, rect.y1, rect.x1, rect.y2);\ncanvas.line(rect.x1, rect.y1 + h/2, rect.x1 + m, rect.y1 + h/2);\n" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..c8f43e2 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,276 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\Users\Administrator\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} +-keepclassmembers class * { + public (org.json.JSONObject); +} +-keep public class cn.liuyanbing.surveyor.R$*{ +public static final int *; +} +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} +#混淆前后的映射 +-printmapping mapping.txt + +-keep class androidx.appcompat.widget.SearchView { *; } +-keep class cn.aigestudio.datepicker.**{*;} + +-dontwarn javax.** + +-keep class com.tencent.mm.sdk.** { + *; +} + +-dontwarn com.tencent.** +-keep class com.tencent.** {*;} + +-ignorewarnings + +# Apache POI +-dontwarn org.apache.** +-dontwarn org.openxmlformats.schemas.** +-dontwarn org.etsi.** +-dontwarn org.w3.** +-dontwarn com.microsoft.schemas.** +-dontwarn com.fasterxml.** +-dontwarn javax.naming.** +-dontwarn java.lang.management.** +-dontwarn org.slf4j.impl.** + +-dontnote org.apache.** +-dontnote org.openxmlformats.schemas.** +-dontnote org.etsi.** +-dontnote org.w3.** +-dontnote com.microsoft.schemas.** +-dontnote com.fasterxml.** +-dontnote javax.naming.** +-dontnote java.lang.management.** +-dontnote org.slf4j.impl.** + +-keeppackagenames org.apache.poi.ss.formula.function + +-keep class org.apache.** {*;} +-keep class org.openxmlformats.** {*;} +-keep class org.etsi.** {*;} +-keep class org.w3.** {*;} +-keep class com.microsoft.** {*;} +-keep class com.fasterxml.** {*;} +-keep class schemaorg_apache_xmlbeans.** {*;} + +# ------------------------ leancloud sdk ------------------------ +-keepattributes Signature +-dontwarn com.jcraft.jzlib.** +-keep class com.jcraft.jzlib.** { *;} + +-dontwarn sun.misc.** +-keep class sun.misc.** { *;} + +-dontwarn alibaba.fastjson.** +-dontnote alibaba.fastjson.** +-keep class alibaba.fastjson.** { *;} + +-dontwarn sun.security.** +-keep class sun.security.** { *; } + +-dontwarn com.google.** +-keep class com.google.** { *;} + +-dontwarn com.avos.** +-dontnote com.avos.** +-keep class com.avos.** { *;} + +-dontwarn cn.leancloud.** +-dontnote cn.leancloud.** +-keep class cn.leancloud.** { *;} + +-keep public class android.net.http.SslError +-keep public class android.webkit.WebViewClient + +-dontwarn android.webkit.WebView +-dontwarn android.net.http.SslError +-dontwarn android.webkit.WebViewClient +-dontnote android.net.http.** + +-dontwarn android.support.** + +-dontwarn org.jivesoftware.smack.** +-keep class org.jivesoftware.smack.** { *;} + +-dontwarn com.loopj.** +-keep class com.loopj.** { *;} + +-dontwarn com.squareup.okhttp.** +-keep class com.squareup.okhttp.** { *;} +-keep interface com.squareup.okhttp.** { *; } + +# keep okhttp3、okio +-dontwarn okhttp3.** +-keep class okhttp3.** { *;} +-keep interface okhttp3.** { *; } +-dontwarn okio.** + +-keep class com.google.protobuf.** { *; } +-keep public class * extends com.google.protobuf.** { *; } +-dontwarn com.google.protobuf.** + +-dontwarn org.xbill.** +-keep class org.xbill.** { *;} + +-keepattributes *Annotation* + + +# ------------------------ ChatKit ------------------------ +-dontwarn cn.leancloud.chatkit.** +-keep class cn.leancloud.chatkit.** { *;} +-dontnote cn.leancloud.chatkit.** + +# ------------------------ picasso ------------------------ +-dontwarn com.squareup.picasso** +-keep class com.squareup.picasso.**{*;} + +# ------------------------ eventbus ------------------------ +-keepattributes *Annotation* +-keepclassmembers class * { + @org.greenrobot.eventbus.Subscribe ; +} +-keep enum org.greenrobot.eventbus.ThreadMode { *; } + +# Only required if you use AsyncExecutor +-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent { + (java.lang.Throwable); +} +#--------------------------工具集----------------------------- +-keep class blankj.utilcode.** { *; } +-keepclassmembers class blankj.utilcode.** { *; } +-dontwarn blankj.utilcode.** + +-keep class com.chad.library.adapter.** { +*; +} +-keep public class * extends com.chad.library.adapter.base.BaseQuickAdapter +-keep public class * extends com.chad.library.adapter.base.BaseViewHolder +-keepclassmembers class **$** extends com.chad.library.adapter.base.BaseViewHolder { + (...); +} + +# glide 的混淆代码 +-keep public class * implements com.bumptech.glide.module.GlideModule +-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** { + **[] $VALUES; + public *; +} +# banner 的混淆代码 +-keep class com.youth.banner.** { + *; + } +# 华测sdk + -keep class com.chc.gnss.sdk.** { *; } + -dontwarn com.chc.gnss.sdk.** +# 中国移动sdk + -keep class com.cmcc.sy.hap.** { *; } + -dontwarn com.cmcc.sy.hap.** +# 梦想CAD sdk + -keep class org.cocos2dx.** { *; } + -dontwarn org.cocos2dx.** + -keep class com.chukong.cocosplay.client.** { *; } + -dontwarn com.chukong.cocosplay.client.** + -keep class com.MxDraw.** { *; } + -dontwarn com.MxDraw.** +#agentweb + -keep class com.just.agentweb.** { + *; + } + -dontwarn com.just.agentweb.** + +#androidx + -keep class com.google.android.material.** {*;} + -keep class androidx.** {*;} + -keep public class * extends androidx.** + -keep interface androidx.** {*;} + -dontwarn com.google.android.material.** + -dontnote com.google.android.material.** + -dontwarn androidx.** + +# 南方坐标转换 + -keep class com.qxwz.sdk.** { *; } + -dontwarn com.qxwz.sdk.** + + -keep class com.bingce.device.rtk.configuration.** { *; } + -keep class com.bingce.device.rtk.model.** { *; } + -keep class com.bingce.totalstation.TsConfig { *; } + + #OkSocket + -dontwarn xuhao.didi.socket.client.** + -dontwarn xuhao.didi.socket.common.** + -dontwarn xuhao.didi.socket.server.** + -dontwarn xuhao.didi.core.** + + -keep class xuhao.didi.socket.client.** { *; } + -keep class xuhao.didi.socket.common.** { *; } + -keep class xuhao.didi.socket.server.** { *; } + -keep class xuhao.didi.core.** { *; } + + -keep class xuhao.didi.socket.client.sdk.client.OkSocketOptions$* { + *; + } + -keep class xuhao.didi.socket.server.impl.OkServerOptions$* { + *; + } + + #gsyvideoplayer + -keep class com.shuyu.gsyvideoplayer.video.** { *; } + -dontwarn com.shuyu.gsyvideoplayer.video.** + -keep class com.shuyu.gsyvideoplayer.video.base.** { *; } + -dontwarn com.shuyu.gsyvideoplayer.video.base.** + -keep class com.shuyu.gsyvideoplayer.utils.** { *; } + -dontwarn com.shuyu.gsyvideoplayer.utils.** + -keep class tv.danmaku.ijk.** { *; } + -dontwarn tv.danmaku.ijk.** + + -keep public class * extends android.view.View{ + *** get*(); + void set*(***); + public (android.content.Context); + public (android.content.Context, android.util.AttributeSet); + public (android.content.Context, android.util.AttributeSet, int); + } + +# # keep rx +# -dontwarn sun.misc.** +# -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { +# long producerIndex; +# long consumerIndex; +# } +# -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { +# rx.internal.util.atomic.LinkedQueueNode producerNode; +# } +# -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef { +# rx.internal.util.atomic.LinkedQueueNode consumerNode; +# } +# +# -keep class cn.liuyanbing.surveyor.model.base.SerializableStringArray { *; } + +-dontwarn com.yalantis.ucrop** +-keep class com.yalantis.ucrop** { *; } +-keep interface com.yalantis.ucrop** { *; } + +-keep class com.bingce.event.WxLoginSuccessEvent{ *; } + +# 友盟 + -keep class com.umeng.** {*;} \ No newline at end of file diff --git a/app/src/androidTest/kotlin/HelloKotlin.kt b/app/src/androidTest/kotlin/HelloKotlin.kt new file mode 100644 index 0000000..4e03abd --- /dev/null +++ b/app/src/androidTest/kotlin/HelloKotlin.kt @@ -0,0 +1,43 @@ +import org.junit.Test + +class HelloKotlin { + + @Test + fun test() { +// runBlocking { +// +// launch { +// Log.d("hwhw", "请求1") +// +// delay(1000) +// Log.d("hwhw", "请求1 delay") +// +// val apiCall = RetrofitClient.apiCall { +// RetrofitClient.createService().getPassageData() +// } +// +// apiCall?.let { +// Log.d("hwhw", "请求成功1,$it") +// } +// } +// +// launch { +// Log.d("hwhw", "请求2") +// +// delay(1000) +// Log.d("hwhw", "请求2 delay") +// +// val apiCall1 = RetrofitClient.apiCall { +// RetrofitClient.createService().getPassageData() +// } +// apiCall1?.let { +// Log.d("hwhw", "请求成功2,$it") +// } +// } +// +// +// } + } + + +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..dbb1af4 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/project/survey/App.java b/app/src/main/java/com/project/survey/App.java new file mode 100644 index 0000000..c8d2342 --- /dev/null +++ b/app/src/main/java/com/project/survey/App.java @@ -0,0 +1,58 @@ +package com.project.survey; + +import static com.bingce.AppChannel.customChannel; + +import android.app.Application; +import android.util.Log; + +import com.bingce.AppChannel; + +import org.polaric.colorful.Colorful; + +import blankj.utilcode.util.Utils; +import io.reactivex.functions.Consumer; +import io.reactivex.plugins.RxJavaPlugins; + +public class App extends Application { + + private static App app; + + @Override + public void onCreate() { + customChannel = AppChannel.CUSTOM_CONTROL_PRO;//AppChannel.CUSTOM_PUBLIC; + super.onCreate(); + app = this; + + initThemeDark(); + + RxJavaPlugins.setErrorHandler(new Consumer() { + @Override + public void accept(Throwable throwable) { + Log.e("rxThrowable", String.valueOf(throwable)); + } + }); + + + Utils.init(this); + + } + + private void initThemeDark() { + Colorful.defaults() + .primaryColor(Colorful.ThemeColor.BLUE) + .accentColor(Colorful.ThemeColor.BLUE) + .translucent(false) + .dark(false); + Colorful.init(this); + + Colorful.config(this).primaryColor(Colorful.ThemeColor.BROWN).apply(); + Colorful.config(this).accentColor(Colorful.ThemeColor.BROWN).apply(); + } + + + public static App getApp() { + return app; + } + + +} diff --git a/app/src/main/java/com/project/survey/activity/MainActivity.kt b/app/src/main/java/com/project/survey/activity/MainActivity.kt new file mode 100644 index 0000000..5889e22 --- /dev/null +++ b/app/src/main/java/com/project/survey/activity/MainActivity.kt @@ -0,0 +1,16 @@ +package com.project.survey.activity + +import com.project.survey.activity.base.BaseBindingActivity +import com.project.survey.databinding.ActivityMainBinding + +class MainActivity : BaseBindingActivity() { + override fun getBinding(): ActivityMainBinding { + return ActivityMainBinding.inflate(layoutInflater) + } + + override fun initView() { + } + + override fun initData() { + } +} \ No newline at end of file diff --git a/app/src/main/java/com/project/survey/activity/SplashActivity.kt b/app/src/main/java/com/project/survey/activity/SplashActivity.kt new file mode 100644 index 0000000..269ce33 --- /dev/null +++ b/app/src/main/java/com/project/survey/activity/SplashActivity.kt @@ -0,0 +1,6 @@ +package com.project.survey.activity + +import com.project.survey.activity.base.BaseBindingActivity + +class SplashActivity :BaseBindingActivity<> { +} \ No newline at end of file diff --git a/app/src/main/java/com/project/survey/activity/base/BaseBindingActivity.kt b/app/src/main/java/com/project/survey/activity/base/BaseBindingActivity.kt new file mode 100644 index 0000000..d011c41 --- /dev/null +++ b/app/src/main/java/com/project/survey/activity/base/BaseBindingActivity.kt @@ -0,0 +1,100 @@ +package com.project.survey.activity.base + +import android.os.Bundle +import android.view.MenuItem +import android.view.View +import android.view.ViewGroup +import android.view.WindowManager +import android.widget.LinearLayout +import androidx.annotation.StringRes +import androidx.appcompat.app.AppCompatActivity +import androidx.appcompat.app.AppCompatDelegate +import androidx.appcompat.widget.Toolbar +import androidx.core.content.ContextCompat +import androidx.viewbinding.ViewBinding +import blankj.utilcode.util.Utils +import com.project.survey.App +import com.project.survey.R +import com.project.survey.databinding.ActivityBaseBindingBinding + +import org.polaric.colorful.Colorful + +abstract class BaseBindingActivity : AppCompatActivity() { + protected val mBinding get() = _binding!! + private var _binding: VB? = null + + private lateinit var toolBar: Toolbar + + + abstract fun getBinding(): VB + abstract fun initView() + abstract fun initData() + + override fun onCreate(savedInstanceState: Bundle?) { + initTheme() + super.onCreate(savedInstanceState) + setContentView(getContentView()) + initToolBar() + initView() + initData() + } + + private fun initTheme() { + setTheme(Colorful.getThemeDelegate().styleResBase) + getTheme().applyStyle(Colorful.getThemeDelegate().styleResPrimary, true) + getTheme().applyStyle(Colorful.getThemeDelegate().styleResAccent, true) + val app = Utils.getApp() as App + delegate.localNightMode = AppCompatDelegate.MODE_NIGHT_YES +// if (app.isThemeDark) { +// delegate.localNightMode = AppCompatDelegate.MODE_NIGHT_YES +// } else { +// delegate.localNightMode = AppCompatDelegate.MODE_NIGHT_NO +// } + window.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); + } + + private fun getContentView(): View { + val baseBinding = ActivityBaseBindingBinding.inflate(layoutInflater) + val layoutParams = LinearLayout.LayoutParams( + ViewGroup.LayoutParams.MATCH_PARENT, + ViewGroup.LayoutParams.MATCH_PARENT + ) + _binding = getBinding() + baseBinding.llParent.addView(mBinding.root, layoutParams) + baseBinding.llParent.setBackgroundColor( + ContextCompat.getColor( + this, + R.color.bg_content_new + ) + ) + + toolBar = baseBinding.ilToolBar.toolbar + return baseBinding.root + } + + protected open fun initToolBar() { + setSupportActionBar(toolBar) + if (supportActionBar != null) supportActionBar!!.setDisplayHomeAsUpEnabled(true) + } + + protected fun setToolbarTitle(text: String?) { + toolBar.setTitle(text) + } + + protected fun setToolbarTitle(@StringRes text: Int) { + toolBar.setTitle(text) + } + + override fun onOptionsItemSelected(item: MenuItem): Boolean { + if (item.itemId == android.R.id.home) { + if (isFinishAtOnce()) + finish() + } + return super.onOptionsItemSelected(item) + } + + protected open fun isFinishAtOnce(): Boolean { + return true + } + +} \ No newline at end of file diff --git a/app/src/main/res/anim/dialog_enter_bottom.xml b/app/src/main/res/anim/dialog_enter_bottom.xml new file mode 100644 index 0000000..8f95a9c --- /dev/null +++ b/app/src/main/res/anim/dialog_enter_bottom.xml @@ -0,0 +1,6 @@ + + diff --git a/app/src/main/res/anim/dialog_exit_bottom.xml b/app/src/main/res/anim/dialog_exit_bottom.xml new file mode 100644 index 0000000..ad6db02 --- /dev/null +++ b/app/src/main/res/anim/dialog_exit_bottom.xml @@ -0,0 +1,6 @@ + + diff --git a/app/src/main/res/anim/fade_in_quick.xml b/app/src/main/res/anim/fade_in_quick.xml new file mode 100644 index 0000000..d418d73 --- /dev/null +++ b/app/src/main/res/anim/fade_in_quick.xml @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/app/src/main/res/anim/fade_out_quick.xml b/app/src/main/res/anim/fade_out_quick.xml new file mode 100644 index 0000000..f7ebe07 --- /dev/null +++ b/app/src/main/res/anim/fade_out_quick.xml @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/app/src/main/res/anim/slide_in_left.xml b/app/src/main/res/anim/slide_in_left.xml new file mode 100644 index 0000000..3921f79 --- /dev/null +++ b/app/src/main/res/anim/slide_in_left.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/anim/slide_in_right.xml b/app/src/main/res/anim/slide_in_right.xml new file mode 100644 index 0000000..105e2df --- /dev/null +++ b/app/src/main/res/anim/slide_in_right.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/anim/slide_out_left.xml b/app/src/main/res/anim/slide_out_left.xml new file mode 100644 index 0000000..3375d2c --- /dev/null +++ b/app/src/main/res/anim/slide_out_left.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/anim/slide_out_right.xml b/app/src/main/res/anim/slide_out_right.xml new file mode 100644 index 0000000..1f58f97 --- /dev/null +++ b/app/src/main/res/anim/slide_out_right.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_base_binding.xml b/app/src/main/res/layout/activity_base_binding.xml new file mode 100644 index 0000000..dce2a21 --- /dev/null +++ b/app/src/main/res/layout/activity_base_binding.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..d28ed5a --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/app/src/main/res/layout/activity_splash.xml b/app/src/main/res/layout/activity_splash.xml new file mode 100644 index 0000000..d28ed5a --- /dev/null +++ b/app/src/main/res/layout/activity_splash.xml @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/app/src/main/res/menu/menu_activity_main.xml b/app/src/main/res/menu/menu_activity_main.xml new file mode 100644 index 0000000..bd3d6a0 --- /dev/null +++ b/app/src/main/res/menu/menu_activity_main.xml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml new file mode 100644 index 0000000..109a590 --- /dev/null +++ b/app/src/main/res/values/arrays.xml @@ -0,0 +1,271 @@ + + + + Classic BT + BLE + Hotspot + + + Known Control Point + Unknown Point + + + 1 + 0.1 + 0.01 + 0.001 + 0.0001 + + + 0 + 1 + 2 + 3 + 4 + + + 0°00′00″ + 0°00′00.0″ + 0°00′00.00″ + + + 0 + 1 + 2 + + + m + cm + mm + auto + + + 0 + 1 + 2 + 3 + + + none + calculate + survey + record + last + next + survey not send result + survey and record + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + + + none + calculate + survey + record + last + next + survey not send result + survey and record + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + + + Common + Trapezoid + Simpson + Romberg + Gauss-Legendre3 + Gauss-Legendre4 + Gauss-Legendre5 + + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + + + Second parabola + Round curve + + + 0 + 1 + + + View Current Instrument Station + Phone * Last Station + Phone * Known Back Sight Setup Station + Phone * Resection Setup Station + Instrument * Input Station(Only Face1) + Instrument * Skip(Only Face1) + + + Phone * Last Station + Phone * Known Back Sight Setup Station + Phone * Resection Setup Station + Instrument * Input Station(Only Face1) + Instrument * Skip(Only Face1) + + + Road + Feature coordinate + Mileage + Control coordinate + CAD + + + Phone GPS + RTK + + + BackBreak + UpDown + LeftRight + Feature UpDown + Feature LeftRight + Measured XYZ + + + Side move + Up Dwon + Kilometer + Distance to middle + Measured XYZ + Design Measured + + + K move D move + Foreback leftRight move + Up Down + Measured XYZ + Design Measured + + + BackBreak + UpDown + LeftRight + Feature UpDown + Feature LeftRight + Kilometer + Measured XYZ + + + K move D move + Foreback leftRight move + Up Down + Measured XYZ + Design Measured + + + K move D move + Up Down + Measured XYZ + Design Measured + + + K move D move + Up Down + Measured XYZ + Design Measured + + + once + twice + three times + + + 0 + 1 + 2 + + + Nearest to the midline + Minimum mileage + Maximum mileage + Nearest to the mileage + + + 0 + 1 + 2 + 3 + + + Not limit + Input allow distance + + + 0 + 1 + + + Mileage + Left Right Fore Back + Direction + + + Break Chain + Hor + Vertical + Standard Cross Section + Super + Widen + Tunnel Section Library + Tunnel Section Matching + Middle Offset + Center Up Down + Tunnel Feature Point + Tunnel Embedded + Tunnel Rotate + Side Section Library + Side Section Matching + SubWay Info + Tbm Ref + Pier Template Library + Bridge Pier Layout + Road Control Point + + + + Amap Map + Baidu Map + Tencent Map + + + + By name, ascending + By name, descending + By size, ascending + By size, descending + By date, ascending + By date, descending + + + B + KB + MB + GB + TB + PB + + diff --git a/app/src/main/res/values/attr.xml b/app/src/main/res/values/attr.xml new file mode 100644 index 0000000..c379f46 --- /dev/null +++ b/app/src/main/res/values/attr.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values/color.xml b/app/src/main/res/values/color.xml new file mode 100644 index 0000000..d5b392f --- /dev/null +++ b/app/src/main/res/values/color.xml @@ -0,0 +1,13 @@ + + + + #f2f3f5 + #f2f2f2 + #000 + #999 + #F3AE42 + #1A000000 + #AAA + #00B050 + #FFFF00 + \ No newline at end of file diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml new file mode 100644 index 0000000..2367411 --- /dev/null +++ b/app/src/main/res/values/dimens.xml @@ -0,0 +1,44 @@ + + + 16dp + 16dp + 10dp + 10dp + 5dp + + + 50dp + 80dp + 80dp + 180dp + 16dp + 16dp + + + 40sp + + + 19sp + 17sp + 15sp + 13sp + 1dp + + 1dp + + 18sp + + 64dp + 60dp + 8dp + 60dp + 4dp + 12sp + 100dp + 8dp + 4dp + + + + + diff --git a/app/src/main/res/values/ids.xml.xml b/app/src/main/res/values/ids.xml.xml new file mode 100644 index 0000000..507ccdd --- /dev/null +++ b/app/src/main/res/values/ids.xml.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..fa37a23 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,15 @@ + + + Control Network + + Please enter the temperature + Please enter humidity + Please enter air pressure + Please enter the addition constant + Please enter the multiplication constant + Please enter the instrument height + Note: Swipe left on the list to delete it + NEW I CORNER DETECTION + Please choose + + \ No newline at end of file diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..c0246f1 --- /dev/null +++ b/app/src/main/res/values/styles.xml @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + --> + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/xml/network_security_config.xml b/app/src/main/res/xml/network_security_config.xml new file mode 100644 index 0000000..dca93c0 --- /dev/null +++ b/app/src/main/res/xml/network_security_config.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/src/test/java/TestCase.java b/app/src/test/java/TestCase.java new file mode 100644 index 0000000..fbc1fda --- /dev/null +++ b/app/src/test/java/TestCase.java @@ -0,0 +1,9 @@ +import org.junit.Test; + +public class TestCase { + + @Test + public void test() { + + } +} diff --git a/app/src/test/kotlin/Hello.kt b/app/src/test/kotlin/Hello.kt new file mode 100644 index 0000000..2be848b --- /dev/null +++ b/app/src/test/kotlin/Hello.kt @@ -0,0 +1,37 @@ + +import org.junit.Test + +class Hello { + @Test + fun main() { + +// runBlocking { +// retrofit { +// api { +// val createService = RetrofitClient.createService() +// val passageData = createService.getPassageData() +// Log.d("hwhw","sfsdf") +// passageData +// } +// } +// } + + + +// // 调用高阶函数 +// kotlinDSL { +// // 这个 lambda 的接收者类型为StringBuilder +// append(" DSL") +// println(this) +// } + + + } + + // 声明接收者 + fun kotlinDSL(block: StringBuilder.() -> Unit) { + block(StringBuilder()) + } + + +} \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..2d190f7 --- /dev/null +++ b/build.gradle @@ -0,0 +1,30 @@ +buildscript { + repositories { + mavenCentral() + google() + maven { url 'https://oss.sonatype.org/content/groups/public/' } + maven { url 'https://developer.huawei.com/repo/' } + maven { url "https://jitpack.io" } + } + dependencies { +// classpath Libs.ButterKnife.plugin + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20" + classpath "com.android.tools.build:gradle:7.3.1" + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0' + +// classpath 'com.android.tools.build:gradle:7.4.2' +// classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10' + } +} + +allprojects { + repositories { + flatDir { dirs 'libs' } + mavenCentral() + google() + maven { url 'https://jitpack.io' } + maven { url 'https://oss.sonatype.org/content/groups/public/' } + maven { url 'https://developer.huawei.com/repo/' } + maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' } + } +} \ No newline at end of file diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts new file mode 100644 index 0000000..d317042 --- /dev/null +++ b/buildSrc/build.gradle.kts @@ -0,0 +1,7 @@ +repositories { + mavenCentral() +} + +plugins { + `kotlin-dsl` +} diff --git a/buildSrc/src/main/java/com/bingce/java/com/bingce/AarCopyUtilsJava.java b/buildSrc/src/main/java/com/bingce/java/com/bingce/AarCopyUtilsJava.java new file mode 100644 index 0000000..7e60421 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/java/com/bingce/AarCopyUtilsJava.java @@ -0,0 +1,9 @@ +package com.bingce; + +import org.gradle.api.Project; + +public class AarCopyUtilsJava { + public static void configCopyTask(Project project, boolean aarOrJava) { + AarCopyUtilsKt.Companion.configCopyTask(project, aarOrJava); + } +} diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/AarCopyUtilsKt.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/AarCopyUtilsKt.kt new file mode 100644 index 0000000..1c44692 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/AarCopyUtilsKt.kt @@ -0,0 +1,79 @@ +package com.bingce + +import org.gradle.api.Project +import org.gradle.api.tasks.Copy +import java.io.File + +class AarCopyUtilsKt { + companion object { + private fun copyToXXX( + taskName: String, + project: Project, + destination: String, + aarOrJava: Boolean + ): Copy { + val projectName = project.name + return project.tasks.register(taskName, Copy::class.java) { + + outputs.upToDateWhen { false } + + from(if (aarOrJava) "build/outputs/aar/${projectName}-release.aar" else "build/libs/${projectName}.jar") // 源目录,这里假设生成物在 build/libs 目录下 + into(destination) // 目标目录 + enabled = destination.isNotEmpty() && destination.isNotBlank() // 取消任务 + }.get() + } + + fun configCopyTask(project: Project, aarOrJava: Boolean) { + val surveyorCopyTaskName = "copy2Surveyor" + val alphaCopyTaskName = "copy2Alpha" + val tjCopyTaskName = "copy2Tj" + + val projectName = project.name + + val copy2Surveyor = + copyToXXX( + surveyorCopyTaskName, + project, + "../../aar/${project.name}/", + aarOrJava + ) + + val bcFolder = BcFolder(project) + + val alphaDestination = bcFolder.folderConfig("alpha.outputDir")?.let { + File(it, "bingceAAR\\${projectName}").absolutePath + } ?: "" + println("alphaDestination: $alphaDestination") + val copy2Alpha = copyToXXX(alphaCopyTaskName, project, alphaDestination, aarOrJava) + + val tjDestination = bcFolder.folderConfig("tj.outputDir")?.let { + File(it, "aar\\${projectName}").absolutePath + } ?: "" + println("tjDestination: $tjDestination") + val copy2Tj = copyToXXX(tjCopyTaskName, project, tjDestination, aarOrJava) + + // 设置任务依赖,确保在 assemble 任务执行完后执行拷贝任务 + project.tasks.named("assemble").configure { + copy2Surveyor.enabled = true + finalizedBy(copy2Surveyor) + } + + val nextTaskName1 = if (alphaDestination.isEmpty() || alphaDestination.isBlank()) { + surveyorCopyTaskName + } else { + project.tasks.named(surveyorCopyTaskName).configure { + copy2Alpha.enabled = true + finalizedBy(copy2Alpha) + } + alphaCopyTaskName + } + + if (tjDestination.isNotEmpty() && tjDestination.isNotBlank()) { + project.tasks.named(nextTaskName1).configure { + copy2Tj.enabled = true + finalizedBy(copy2Tj) + } + } + } + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/BcFolder.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/BcFolder.kt new file mode 100644 index 0000000..1cd83e1 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/BcFolder.kt @@ -0,0 +1,34 @@ +package com.bingce + +import org.gradle.api.Project +import java.io.File +import java.io.FileInputStream +import java.util.Properties + +class BcFolder(project: Project) { + private val NAME = "local.properties" + private val properties: Properties = Properties() + private val rootProject = project.rootProject + + init { + val config1 = File(rootProject.projectDir.parent, NAME) + if (config1.exists()) { + properties.load(FileInputStream(config1)) + } else { + properties.load(FileInputStream(project.rootProject.file(NAME))) + } + } + + fun rootProjectDir(): File { + val bcFolder = properties.getProperty("bingce.dir") + if (bcFolder == null || bcFolder.isEmpty()) return rootProject.projectDir + + return File(bcFolder) + } + + fun folderConfig(folderKey: String): File? { + val folderString = properties.getProperty(folderKey) + if (folderString == null || folderString.isEmpty()) return null + return File(folderString) + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/ConfigProperties.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/ConfigProperties.kt new file mode 100644 index 0000000..c2d1fa4 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/ConfigProperties.kt @@ -0,0 +1,25 @@ +package com.bingce + +import org.gradle.api.Project +import java.io.File +import java.io.FileInputStream +import java.util.Properties + +class ConfigProperties(project: Project) { + private val NAME = "local.properties" + private val properties: Properties = Properties() + + init { + val rootProject = project.rootProject + val config1 = File(rootProject.projectDir.parent, NAME) + if (config1.exists()) { + properties.load(FileInputStream(config1)) + } else { + properties.load(FileInputStream(project.rootProject.file(NAME))) + } + } + + fun getProperty(key: String?): String? { + return properties.getProperty(key) + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/ModuleName.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/ModuleName.kt new file mode 100644 index 0000000..8e7cebe --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/ModuleName.kt @@ -0,0 +1,44 @@ +package com.bingce + +import org.gradle.api.Project +import java.io.FileInputStream +import java.util.* + +class ModuleName(project: Project) { + private val useAAR: String + private val useBaseAAR: String + + init { + val properties = ConfigProperties(project) + useAAR = properties.getProperty("useAAR") ?: "true" + useBaseAAR = properties.getProperty("useBaseAAR") ?: "true" + } + + fun bingceModule(name: String): String { + return if ("base" == name) { + if ("false" == useBaseAAR) { + ":bingce:base" + } else { + ":aar:base" + } + } else { + if ("false" == useAAR) { + ":bingce:$name" + } else { + ":aar:$name" + } + } + } + + fun openSourceModule(name: String): String { + return if ("false" == useAAR) { + ":opensource:$name" + } else { + ":aar:$name" + } + } + + fun isUseAAR(): Boolean { + return useAAR == "true" + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/Sample.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/Sample.kt new file mode 100644 index 0000000..e11e489 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/Sample.kt @@ -0,0 +1,13 @@ +package com.bingce + +object Sample{ + const val applicationId = "com.bingce.sample" + const val versionCode = 1 + const val versionName = "1" + + + const val minSdkVersion = 21 + const val targetSdkVersion = 28 + const val compileSdkVersion = 31 + const val buildToolsVersion = AndroidSdk.buildToolsVersion +} diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/SurveyorVersionUtils.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/SurveyorVersionUtils.kt new file mode 100644 index 0000000..d01fe43 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/SurveyorVersionUtils.kt @@ -0,0 +1,27 @@ +package com.bingce + +import org.gradle.api.Project +import java.util.Calendar + +class SurveyorVersionUtils(project: Project) { + val versionCode: Int + val versionName: String + val mappingFolder: String + + init { + val cale = Calendar.getInstance(); + val year = cale.get(Calendar.YEAR); + val month = cale.get(Calendar.MONTH) + 1; + val day = cale.get(Calendar.DATE); + val hour = cale.get(Calendar.HOUR_OF_DAY); + val minute = cale.get(Calendar.MINUTE); + val second = cale.get(Calendar.SECOND); + + versionCode = (year - 2000) * 100000 + month * 1000 + day * 10 + versionName = "" + (year - 2010) + "." + month + "." + day + "." + hour + "." + minute + + //检测mapping folder + val properties = ConfigProperties(project) + mappingFolder = properties.getProperty("mapping.dir") ?: "" + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/appInfo.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/appInfo.kt new file mode 100644 index 0000000..58c52ea --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/appInfo.kt @@ -0,0 +1,29 @@ +package com.bingce + +object App { + object Surveyor { + const val applicationId = "cn.liuyanbing.surveyor" + } + + object Alpha { + const val applicationId = "zone.a.dimap" + } + + object SurveyorPad { + const val applicationId = "com.bingce.pad" + const val versionCode = 2303130 + const val versionName = "1.0.0" + } + + object ControlNetwork { + const val applicationId = "com.bingce.controlnetwork" + const val versionCode = 2212130 + const val versionName = "1.6.221213" + } + + object GnssServer { + const val applicationId = "com.bingce.gnssserver" + const val versionCode = 2212060//注意同步更新DeviceUtil里的checkIfGnssServerReady里的版本 + const val versionName = "1.0.221206" + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/dependencies.kt b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/dependencies.kt new file mode 100644 index 0000000..0689a24 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/dependencies.kt @@ -0,0 +1,257 @@ +/* + * Copyright 2020 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.bingce + +import org.gradle.api.JavaVersion + +object AndroidSdk { + const val minSdkVersion = 26 //POI库要求最低26 + const val targetSdkVersion = 31 + const val compileSdkVersion = 34 + const val buildToolsVersion = "33.0.0" + + private const val junitVersion = "4.13.2" + const val junit = "junit:junit:$junitVersion" + const val runner = "androidx.test:runner:1.4.0" + const val core = "androidx.test:core:1.4.0" + const val testJunit = "androidx.test.ext:junit:1.1.5" + const val testEspresso = "androidx.test.espresso:espresso-core:3.1.0" + const val androidJUnitRunner = "androidx.test.runner.AndroidJUnitRunner" + + val javaVersion: JavaVersion = JavaVersion.VERSION_1_8 +} + +object Kotlin { + private const val kotlinVersion = "1.9.10" + const val sdk = "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" + const val corountine = "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9" + const val plugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" +} + +object AndroidX { + const val appcompat = "androidx.appcompat:appcompat:1.6.1" + const val localBroadcastManager = "androidx.localbroadcastmanager:localbroadcastmanager:1.0.0" + const val swipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" + + private const val legacyVersion = "1.0.0" + const val legacySupport = "androidx.legacy:legacy-support-v4:$legacyVersion" + const val legacyPreference = "androidx.legacy:legacy-preference-v14:$legacyVersion" + + const val preference = "androidx.preference:preference:1.1.1" + const val multidex = "androidx.multidex:multidex:2.0.1" + const val cardView = "androidx.cardview:cardview:1.0.0" + const val recyclerview = "androidx.recyclerview:recyclerview:1.2.1" + const val annotationz = "androidx.annotation:annotation:1.1.0" + const val documentFile = "androidx.documentfile:documentfile:1.0.1" + const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4" + const val material = "com.google.android.material:material:1.8.0" + const val materialDialogs = "com.afollestad.material-dialogs:core:0.9.6.0" + const val vectorDrawable = "androidx.vectordrawable:vectordrawable:1.1.0" + + object Core { + const val coreKtx = "androidx.core:core-ktx:1.9.0" + } + + object Paging { + private const val version = "3.2.1" + const val runtime = "androidx.paging:paging-runtime:$version" + const val common = "androidx.paging:paging-common:$version" + } + + object Lifecycle { + private const val lifecycleVersion = "2.2.0" + const val extensions = "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion" + const val viewModel = "androidx.lifecycle:lifecycle-viewmodel:$lifecycleVersion" + const val runtimeKt = "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0"; + const val viewModelKt = "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"; + } + + object Room { + private const val version = "2.6.1" + const val runtime = "androidx.room:room-runtime:$version" + const val ktx = "androidx.room:room-ktx:$version" + const val compiler = "androidx.room:room-compiler:$version" + const val paging = "androidx.room:room-paging:$version" + } + + object Ktx { + private const val version = "1.8.0" + const val activity = "androidx.activity:activity-ktx:$version" + const val fragment = "androidx.fragment:fragment-ktx:1.2.5" + } +} + +object Libs { + const val eventBus = "org.greenrobot:eventbus:3.1.1" + + object ButterKnife { + private const val version = "10.2.3" + const val core = "com.jakewharton:butterknife:$version" + const val compiler = "com.jakewharton:butterknife-compiler:$version" + const val plugin = "com.jakewharton:butterknife-gradle-plugin:$version" + } + + const val jPinYin = "com.github.stuxuhai:jpinyin:1.0" + + const val switchIcon = "com.github.zagum:Android-SwitchIcon:1.4.0" + + const val zxing = "com.google.zxing:core:3.2.1" + + object Rx { + const val rxJava = "io.reactivex.rxjava2:rxjava:2.2.8" + const val rxAndroid = "io.reactivex.rxjava2:rxandroid:2.1.1" + } + + object POI { + const val slf4j_api = "org.slf4j:slf4j-api:1.7.30" + const val jcl_over_slf4j = "org.slf4j:jcl-over-slf4j:1.7.30" + const val poi_ooxml = "org.apache.poi:poi-ooxml:4.1.2"//4.0.1版本会造成无法识别Poi的类例如Cell,高于4.1.2又会导致读写xls异常,提示provider未找到,所以4.1.2是最好的选着,不好的一点是,4.1.2要求在minsdk>26(Android8)以上才能编译 + const val aalto_xml = "com.fasterxml:aalto-xml:1.3.0" + const val stax_api = "stax:stax-api:1.0.1" + const val commons_jexl3 = "org.apache.commons:commons-jexl3:3.2" + const val commons_beanutils = "commons-beanutils:commons-beanutils:1.9.4" + const val logback_core = "ch.qos.logback:logback-core:1.2.10" + const val commons_compress = "org.apache.commons:commons-compress:1.21" + const val commons_lang3 = "org.apache.commons:commons-lang3:3.7" + } + + object UMeng { + const val common = "com.umeng.umsdk:common:9.6.6" + const val asms = "com.umeng.umsdk:asms:1.8.0" + const val apm = "com.umeng.umsdk:apm:1.9.4" + } + + object RxHttp { + const val core = "com.ljx.rxhttp:rxhttp:2.5.5" + const val compiler = "com.ljx.rxhttp:rxhttp-compiler:2.5.5" + } + + object Retrofit2 { + const val core = "com.squareup.retrofit2:retrofit:2.9.0" + const val converterFastjson = "org.ligboy.retrofit2:converter-fastjson-android:2.1.0" + } + + const val scanplus = "com.huawei.hms:scanplus:2.12.0.301" + + object Glide { + private const val version = "4.9.0" + const val core = "com.github.bumptech.glide:glide:$version" + const val compiler = "com.github.bumptech.glide:compiler:$version" + } + + object RxImagePicker { + private const val version = "2.5.6" + const val core = "com.github.qingmei2:rximagepicker:$version" + const val support = "com.github.qingmei2:rximagepicker_support:$version" + const val supportWechat = "com.github.qingmei2:rximagepicker_support_wechat:$version" + } + + object OkHttp { + private const val version = "4.9.0" + const val core = "com.squareup.okhttp3:okhttp:$version" + const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:$version" + } + +// const val fastJson = "com.alibaba:fastjson:1.1.71.android" + + object Iconics { + private const val version = "3.2.5" + const val core = "com.mikepenz:iconics-core:$version" + const val views = "com.mikepenz:iconics-views:$version" + const val materialIconicTypeface = + "com.mikepenz:material-design-iconic-typeface:2.2.0.4@aar" + const val typeiconsTypeface = "com.mikepenz:typeicons-typeface:2.0.7.4@aar" + } + + object Filament { + private const val version = "1.49.1" + const val android = "com.google.android.filament:filament-android:$version" + const val gltfio = "com.google.android.filament:gltfio-android:$version" + const val utils = "com.google.android.filament:filament-utils-android:$version" + } + + const val compressor = "id.zelory:compressor:2.1.1"//图片压缩工具 + const val picasso = "com.squareup.picasso:picasso:2.71828" + const val rubberStamp = "com.vinaygaba:rubberstamp:1.0.0"//图像处理 + const val photoView = "com.github.chrisbanes:PhotoView:2.1.3"//图片缩放库 + const val circleImage = "de.hdodenhof:circleimageview:3.0.1"//圆角图片 + + const val realmPlugin = "io.realm:realm-gradle-plugin:5.14.0" + const val objectBox = "io.objectbox:objectbox-gradle-plugin:3.5.1" + + const val materialEditText = "com.rengwuxian.materialedittext:library:2.1.4" + const val swipeLayout = "com.daimajia.swipelayout:library:1.2.0@aar" + const val recyclerviewAnimator = "jp.wasabeef:recyclerview-animators:2.2.7" + const val fabButton = "com.github.clans:fab:1.6.4"//悬浮按钮 + const val datePicker = "cn.aigestudio.datepicker:DatePicker:2.2.0"//时间选择器 + const val changeLog = "com.github.gabrielemariotti.changeloglib:changelog:2.1.0"//变更日志库 + const val flycoTabLayout = "com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar"//标签库 + + // const val utilCodex = "com.blankj:utilcodex:1.31.0"//工具类工具\ + const val materialAbout = "com.github.jrvansuita:MaterialAbout:0.2.4"//界面风格工具 + const val banner = "com.youth.banner:banner:2.1.0"//轮播图 + const val webChatSdk = "com.tencent.mm.opensdk:wechat-sdk-android-without-mta:5.4.3"//腾讯opensdk + const val appUpdate = "com.github.jenly1314.AppUpdater:app-updater:1.1.3"//app版本更新 + const val rootBeer = "com.scottyab:rootbeer-lib:0.0.7"//root检查 + const val tabBar = "devlight.io:navigationtabbar:1.2.5"//tabBar + const val agentWeb = "com.just.agentweb:agentweb:4.1.2"//网页加载工具 + const val tencentSonic = "com.tencent.sonic:sdk:2.0.0"//腾讯网页加载工具 + const val downloader = "com.download.library:Downloader:4.1.2"//下载工具 + const val keyboardVisibility = + "net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.3.0"//软件盘监听工具 + const val progressBar = "com.daimajia.numberprogressbar:library:1.4@aar"//进度条 +// const val fastBle = "clj.fastble:FastBleLib:2.3.4"//蓝牙ble + + object FastAdapter { + private const val version = "3.3.1" + const val core = "com.mikepenz:fastadapter:$version" + const val itemanimators = "com.mikepenz:itemanimators:1.1.0" + } + + const val pickerView = "com.contrarywind:Android-PickerView:4.1.9" + const val unCrop = "com.github.yalantis:ucrop:2.2.7" + const val imageTextButton = "cn.dxjia:imagetextbutton:1.0.0" + const val threadPoster = "com.techyourchance:threadposter:1.0.1" + const val fileDownloader = "com.liulishuo.filedownloader:library:1.7.7" + const val gson = "com.google.code.gson:gson:2.8.9" + + object LeanCloud { + private const val version = "8.2.16" + const val storage = "cn.leancloud:storage-android:$version" + const val realtime = "cn.leancloud:realtime-android:$version" + } + + const val dragExpandGrid = "com.nineoldandroids:library:2.4.0"//动画效果库 + const val giftDrawable = "pl.droidsonroids.gif:android-gif-drawable:1.2.23"//加载gif图 + const val xxPermissions = "com.github.getActivity:XXPermissions:18.5" + + const val httpLegacy = "org.apache.http.legacy" + + // const val usbSerial4Android = "com.github.mik3y:usb-serial-for-android:3.4.3" + const val serialPort = "io.github.xmaihh:serialport:2.1.1" + const val timber = "com.jakewharton.timber:timber:4.7.1" + const val loadingView = "com.ldoublem.loadingview:loadingviewlib:1.0" + + const val gjygitEditext="com.github.gjygit:editext:3.0" + + object RefreshLayout { + private const val version = "2.0.5" + const val kernel = "io.github.scwang90:refresh-layout-kernel:$version"//核心必须依赖 + const val header = "io.github.scwang90:refresh-header-classics:$version"//经典刷新头 + const val footer = "io.github.scwang90:refresh-footer-classics:$version"//经典加载 + } +} \ No newline at end of file diff --git a/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/flavor/FlavorItems.java b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/flavor/FlavorItems.java new file mode 100644 index 0000000..5863f95 --- /dev/null +++ b/buildSrc/src/main/java/com/bingce/kotlin/com/bingce/flavor/FlavorItems.java @@ -0,0 +1,50 @@ +package com.bingce.flavor; + +import java.util.ArrayList; +import java.util.List; + +public class FlavorItems { + + public static class FlavorItem { + public final String name; + public final String STRING_APP; + public final int CHANNEL_TYPE; + + public FlavorItem(String name, String string_app, int channel_type) { + this.name = name; + STRING_APP = string_app; + CHANNEL_TYPE = channel_type; + } + } + + public static List flavorItemList(String configs) { + List flavorItemList = new ArrayList<>(); + + String[] contentArray = configs.split("\n"); + + String name = ""; + String STRING_APP = "测量员"; + int CHANNEL_TYPE = 0; + for (String str : contentArray) { + if (str.startsWith("{")) { + name = ""; + STRING_APP = "测量员"; + CHANNEL_TYPE = 0; + } else if (str.startsWith("}")) { + flavorItemList.add(new FlavorItem(name, STRING_APP, CHANNEL_TYPE)); + } else { + str = str.trim(); + String[] array = str.split("="); + if ("name".equals(array[0])) { + name = array[1]; + } else if ("STRING_APP".equals(array[0])) { + STRING_APP = array[1]; + } else if ("CHANNEL_TYPE".equals(array[0])) { + CHANNEL_TYPE = Integer.parseInt(array[1]); + } + } + } + + return flavorItemList; + } +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..9020218 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,25 @@ +# Project-wide Gradle settings. +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +# Default value: -Xmx10248m -XX:MaxPermSize=256m +#org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +org.gradle.daemon=true +org.gradle.jvmargs=-Xmx8000m -XX:MaxPermSize=8000m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +org.gradle.parallel=true +org.gradle.configureondemand=true +android.useAndroidX=true +android.enableJetifier=true +#android.jetifier.blacklist = doNot.*\\.jar +#android.enableAapt2=false +MAPBOX_DOWNLOADS_TOKEN=sk.eyJ1IjoieWFuYmluZzE3NyIsImEiOiJja2p6dHRleHgwYXdiMnhycmZrdXdmY3l0In0.GDgDxGT_JPn4YCsYvh82rA + +# all surveyor control +app=all \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..8c0fb64 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..f06afac --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Sep 16 16:02:22 CST 2022 +distributionBase=GRADLE_USER_HOME +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip +distributionPath=wrapper/dists +zipStorePath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..91a7e26 --- /dev/null +++ b/gradlew @@ -0,0 +1,164 @@ +#!/usr/bin/env bash + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn ( ) { + echo "$*" +} + +die ( ) { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; +esac + +# For Cygwin, ensure paths are in UNIX format before anything is touched. +if $cygwin ; then + [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >&- +APP_HOME="`pwd -P`" +cd "$SAVED" >&- + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..8a0b282 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,90 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/import-summary.txt b/import-summary.txt new file mode 100644 index 0000000..44f7be8 --- /dev/null +++ b/import-summary.txt @@ -0,0 +1,36 @@ +ECLIPSE ANDROID PROJECT IMPORT SUMMARY +====================================== + +Ignored Files: +-------------- +The following files were *not* copied into the new Gradle project; you +should evaluate whether these are still needed in your project and if +so manually move them: + +* .gitignore +* proguard-project.txt + +Moved Files: +------------ +Android Gradle projects use a different directory structure than ADT +Eclipse projects. Here's how the projects were restructured: + +* AndroidManifest.xml => tableFixHeaders\src\main\AndroidManifest.xml +* assets\ => tableFixHeaders\src\main\assets +* res\ => tableFixHeaders\src\main\res\ +* src\ => tableFixHeaders\src\main\java\ + +Next Steps: +----------- +You can now build the project. The Gradle project needs network +connectivity to download dependencies. + +Bugs: +----- +If for some reason your project does not build, and you determine that +it is due to a bug or limitation of the Eclipse to Gradle importer, +please file a bug at http://b.android.com with category +Component-Tools. + +(This import summary is for your information only, and can be deleted +after import once you are satisfied with the results.) diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..9205545 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,145 @@ +include ':app' + + +def properties = properties(rootProject) +def bcDir = properties.getProperty('bingce.dir') + +if (bcDir == null || bcDir.empty) throw new RuntimeException("需要在local.properties中设置bingce.dir路径") + +// 定义一个方法来获取指定目录下的当前 Git 分支 +def listGitBranches(File gitDirectory) { + def command = ['git', 'symbolic-ref', '--short', '-q', 'HEAD'] + def processBuilder = new ProcessBuilder(command) + + // 设置工作目录为指定的 Git 仓库目录 + processBuilder.directory(gitDirectory) + + // 捕获命令输出 + def process = processBuilder.start() + def reader = new BufferedReader(new InputStreamReader(process.inputStream)) + def branches = [] + String line + while ((line = reader.readLine()) != null) { + return line + } + + // 检查进程是否成功执行 + def exitCode = process.waitFor() + if (exitCode != 0) { + // 如果命令执行失败,可以抛出异常或做其他处理 + throw new RuntimeException("Git command failed with exit code ${exitCode}") + } + + return "" +} + +// 例如,要检测指定目录的 Git 分支,可以调用 getGitBranch 方法 +//def gitDirectory = new File(bcDir) +//def currentBranch = listGitBranches(gitDirectory) +// +//if (currentBranch != "master_alpha_tj_offline") throw new RuntimeException("需要将${bcDir}仓库切换到master_alpha_tj_offline分支") + + +static def properties(ProjectDescriptor rootProject) { + Properties properties = new Properties() + properties.load(new File(rootProject.projectDir, 'local.properties').newDataInputStream()) + return properties +} + +static def bingceModule(ProjectDescriptor rootProject, String name) { + def properties = properties(rootProject) + def useAAR = properties.getProperty('useAAR') + def useBaseAAR = properties.getProperty('useBaseAAR') + + if ("base" == name) { + if ("false" == useBaseAAR && "false" == useAAR) { + return ":bingce:base" + } else { + return ":aar:base" + } + } + if ("false" == useAAR) { + return ":bingce:$name" + } else { + return ":aar:$name" + } +} + +static def openSourceModule(ProjectDescriptor rootProject, String name) { + def properties = properties(rootProject) + def useAAR = properties.getProperty('useAAR') + + if ("false" == useAAR) { + return ":opensource:$name" + } else { + return ":aar:$name" + } +} + +static def includeBingceModule(Settings settings, ProjectDescriptor rootProject, String bcDir, String name) { + def moduleName = bingceModule(rootProject, name) + settings.include(moduleName) + if (moduleName == ":aar:base") return // base 模块不需要设置 projectDir + settings.project(moduleName).projectDir = new File(bcDir, "bingce/$name") +} + +static def includeOpenSourceModule(Settings settings, ProjectDescriptor rootProject, String bcDir, String name) { + settings.include(openSourceModule(rootProject, name)) + settings.project(openSourceModule(rootProject, name)).projectDir = new File(bcDir, "opensource/$name") +} + +static def includeSdkModule(Settings settings, ProjectDescriptor rootProject, String bcDir, String name) { + def moduleName = ":sdk:$name" + settings.include(moduleName) + settings.project(moduleName).projectDir = new File(bcDir, "sdk/$name") +} + +includeBingceModule(settings, rootProject, bcDir, "base") +includeBingceModule(settings, rootProject, bcDir, "base-java") +includeBingceModule(settings, rootProject, bcDir, "appBase") +includeBingceModule(settings, rootProject, bcDir, "leancloud") +includeBingceModule(settings, rootProject, bcDir, "repository") +includeBingceModule(settings, rootProject, bcDir, "coordlib") +includeBingceModule(settings, rootProject, bcDir, "device") +includeBingceModule(settings, rootProject, bcDir, "device-ui") +includeBingceModule(settings, rootProject, bcDir, "utils") +includeBingceModule(settings, rootProject, bcDir, "totalstation") +includeBingceModule(settings, rootProject, bcDir, "rtk") +includeBingceModule(settings, rootProject, bcDir, "level") +includeBingceModule(settings, rootProject, bcDir, "bc-dialog") +includeBingceModule(settings, rootProject, bcDir, "DialogXInterface") +includeBingceModule(settings, rootProject, bcDir, "bcdialog-style") + + +includeOpenSourceModule(settings, rootProject, bcDir, "hellocharts") +includeOpenSourceModule(settings, rootProject, bcDir, "gson") +includeOpenSourceModule(settings, rootProject, bcDir, "fastjson") +includeOpenSourceModule(settings, rootProject, bcDir, "javadxf") +includeOpenSourceModule(settings, rootProject, bcDir, "utilcode") +includeOpenSourceModule(settings, rootProject, bcDir, "colorful") +includeOpenSourceModule(settings, rootProject, bcDir, "dragExpandGrid") +includeOpenSourceModule(settings, rootProject, bcDir, "lsettingitemlibrary") +includeOpenSourceModule(settings, rootProject, bcDir, "spinkit") +includeOpenSourceModule(settings, rootProject, bcDir, "splashview") +includeOpenSourceModule(settings, rootProject, bcDir, "poishadowjar") +includeOpenSourceModule(settings, rootProject, bcDir, "safFilePicker") +includeOpenSourceModule(settings, rootProject, bcDir, "exFilePicker") +includeOpenSourceModule(settings, rootProject, bcDir, "agentweb") +includeOpenSourceModule(settings, rootProject, bcDir, "fastBle") +includeOpenSourceModule(settings, rootProject, bcDir, "socket-core") +includeOpenSourceModule(settings, rootProject, bcDir, "socket-common-interface") +includeOpenSourceModule(settings, rootProject, bcDir, "socket-client") +includeOpenSourceModule(settings, rootProject, bcDir, "socket-usbSerialForAndroid") +includeOpenSourceModule(settings, rootProject, bcDir, "usbSerialForAndroid") +includeOpenSourceModule(settings, rootProject, bcDir, "menuItemBadge") +includeOpenSourceModule(settings, rootProject, bcDir, "triangle-library") + +includeSdkModule(settings, rootProject, bcDir, "jama") +includeSdkModule(settings, rootProject, bcDir, "libqxwz-sdkcore") +includeSdkModule(settings, rootProject, bcDir, "libsixents-sdkcore") +includeSdkModule(settings, rootProject, bcDir, "cmccSdk") +includeSdkModule(settings, rootProject, bcDir, "luowangSdk") +includeSdkModule(settings, rootProject, bcDir, "ruide-extension-sdk") +includeSdkModule(settings, rootProject, bcDir, "huaceRtkSdk") +includeSdkModule(settings, rootProject, bcDir, "southGnssSdk") +includeSdkModule(settings, rootProject, bcDir, "tensorFlowTTS")