@nanobpm/nano-workforce 0.93.0 → 0.95.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -82,8 +82,87 @@
82
82
  </nano:shapes>
83
83
  </bpmn:extensionElements>
84
84
  <bpmn:startEvent id="Start" name="Issue submitted">
85
- <bpmn:outgoing>f_toEnsureBase</bpmn:outgoing>
85
+ <bpmn:outgoing>f_toReadinessGw</bpmn:outgoing>
86
86
  </bpmn:startEvent>
87
+ <bpmn:exclusiveGateway id="gw-readiness" name="dependent (has capability gate)?" default="f_readiness_skip">
88
+ <bpmn:incoming>f_toReadinessGw</bpmn:incoming>
89
+ <bpmn:outgoing>f_readiness_gate</bpmn:outgoing>
90
+ <bpmn:outgoing>f_readiness_skip</bpmn:outgoing>
91
+ </bpmn:exclusiveGateway>
92
+ <bpmn:subProcess id="readiness-preflight" name="Await producer capabilities (preflight)">
93
+ <bpmn:incoming>f_readiness_gate</bpmn:incoming>
94
+ <bpmn:outgoing>f_readiness_done</bpmn:outgoing>
95
+ <bpmn:multiInstanceLoopCharacteristics>
96
+ <bpmn:extensionElements>
97
+ <zeebe:loopCharacteristics inputCollection="=readinessProbes" inputElement="probe" outputCollection="resolvedArtifacts" outputElement="=resolvedArtifact" />
98
+ </bpmn:extensionElements>
99
+ </bpmn:multiInstanceLoopCharacteristics>
100
+ <bpmn:startEvent id="pf_start" name="Awaiting capability">
101
+ <bpmn:outgoing>pf_toProbe</bpmn:outgoing>
102
+ </bpmn:startEvent>
103
+ <bpmn:serviceTask id="preflight-probe" name="Probe capability (poll)">
104
+ <bpmn:extensionElements>
105
+ <zeebe:taskDefinition type="pr.readiness-probe" />
106
+ <zeebe:properties>
107
+ <zeebe:property name="io.nanobpm.dataEnvelope.in" value="ReadinessProbeIn" />
108
+ <zeebe:property name="io.nanobpm.dataEnvelope.out" value="ReadinessProbeOut" />
109
+ </zeebe:properties>
110
+ </bpmn:extensionElements>
111
+ <bpmn:incoming>pf_toProbe</bpmn:incoming>
112
+ <bpmn:outgoing>pf_probed</bpmn:outgoing>
113
+ </bpmn:serviceTask>
114
+ <bpmn:boundaryEvent id="be_pf_probe_timeout" name="Probe timed out" attachedToRef="preflight-probe">
115
+ <bpmn:outgoing>pf_probeTimedOut</bpmn:outgoing>
116
+ <bpmn:timerEventDefinition id="ted_pf_probe_timeout">
117
+ <bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=probeTimeout</bpmn:timeDuration>
118
+ </bpmn:timerEventDefinition>
119
+ </bpmn:boundaryEvent>
120
+ <bpmn:exclusiveGateway id="pf_gw" name="capability ready?" default="pf_escalate">
121
+ <bpmn:incoming>pf_probed</bpmn:incoming>
122
+ <bpmn:outgoing>pf_ready</bpmn:outgoing>
123
+ <bpmn:outgoing>pf_escalate</bpmn:outgoing>
124
+ </bpmn:exclusiveGateway>
125
+ <bpmn:userTask id="readiness-escalation-pf" name="Producer capability stalled (human)">
126
+ <bpmn:extensionElements>
127
+ <zeebe:formDefinition formId="readiness-escalation" />
128
+ <zeebe:userTask />
129
+ <zeebe:assignmentDefinition candidateGroups="operators" />
130
+ </bpmn:extensionElements>
131
+ <bpmn:incoming>pf_escalate</bpmn:incoming>
132
+ <bpmn:incoming>pf_probeTimedOut</bpmn:incoming>
133
+ <bpmn:outgoing>pf_toResolution</bpmn:outgoing>
134
+ </bpmn:userTask>
135
+ <bpmn:boundaryEvent id="be_pf_sla" name="SLA elapsed" attachedToRef="readiness-escalation-pf">
136
+ <bpmn:outgoing>pf_sla</bpmn:outgoing>
137
+ <bpmn:timerEventDefinition id="ted_pf_sla">
138
+ <bpmn:timeDuration xsi:type="bpmn:tFormalExpression">=escalationSlaTimeout</bpmn:timeDuration>
139
+ </bpmn:timerEventDefinition>
140
+ </bpmn:boundaryEvent>
141
+ <bpmn:exclusiveGateway id="pf_gw_res" name="resolution?" default="pf_proceed">
142
+ <bpmn:incoming>pf_toResolution</bpmn:incoming>
143
+ <bpmn:outgoing>pf_proceed</bpmn:outgoing>
144
+ <bpmn:outgoing>pf_abandon</bpmn:outgoing>
145
+ </bpmn:exclusiveGateway>
146
+ <bpmn:endEvent id="pf_end" name="Capability settled">
147
+ <bpmn:incoming>pf_ready</bpmn:incoming>
148
+ <bpmn:incoming>pf_proceed</bpmn:incoming>
149
+ <bpmn:incoming>pf_abandon</bpmn:incoming>
150
+ <bpmn:incoming>pf_sla</bpmn:incoming>
151
+ </bpmn:endEvent>
152
+ <bpmn:sequenceFlow id="pf_toProbe" sourceRef="pf_start" targetRef="preflight-probe" />
153
+ <bpmn:sequenceFlow id="pf_probed" sourceRef="preflight-probe" targetRef="pf_gw" />
154
+ <bpmn:sequenceFlow id="pf_ready" name="ready" sourceRef="pf_gw" targetRef="pf_end">
155
+ <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=ready = true</bpmn:conditionExpression>
156
+ </bpmn:sequenceFlow>
157
+ <bpmn:sequenceFlow id="pf_escalate" name="stalled" sourceRef="pf_gw" targetRef="readiness-escalation-pf" />
158
+ <bpmn:sequenceFlow id="pf_probeTimedOut" name="timed out" sourceRef="be_pf_probe_timeout" targetRef="readiness-escalation-pf" />
159
+ <bpmn:sequenceFlow id="pf_toResolution" sourceRef="readiness-escalation-pf" targetRef="pf_gw_res" />
160
+ <bpmn:sequenceFlow id="pf_proceed" name="acknowledge" sourceRef="pf_gw_res" targetRef="pf_end" />
161
+ <bpmn:sequenceFlow id="pf_abandon" name="abandon" sourceRef="pf_gw_res" targetRef="pf_end">
162
+ <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=resolution = "abandon"</bpmn:conditionExpression>
163
+ </bpmn:sequenceFlow>
164
+ <bpmn:sequenceFlow id="pf_sla" name="SLA auto-abandon" sourceRef="be_pf_sla" targetRef="pf_end" />
165
+ </bpmn:subProcess>
87
166
  <bpmn:serviceTask id="ensure-base-branch" name="Ensure base branch">
88
167
  <bpmn:extensionElements>
89
168
  <zeebe:taskDefinition type="pr.ensure-base-branch" />
@@ -95,7 +174,8 @@
95
174
  <zeebe:input source="=baseBranch" target="baseBranch" />
96
175
  </zeebe:ioMapping>
97
176
  </bpmn:extensionElements>
98
- <bpmn:incoming>f_toEnsureBase</bpmn:incoming>
177
+ <bpmn:incoming>f_readiness_skip</bpmn:incoming>
178
+ <bpmn:incoming>f_readiness_done</bpmn:incoming>
99
179
  <bpmn:outgoing>f_toPlan</bpmn:outgoing>
100
180
  </bpmn:serviceTask>
101
181
  <bpmn:serviceTask id="plan" name="Plan (agent)">
@@ -212,7 +292,7 @@
212
292
  <zeebe:linkedResource resourceId="feature.md" bindingType="latest" resourceType="GenericScript" linkName="prompt" />
213
293
  </zeebe:linkedResources>
214
294
  <zeebe:ioMapping>
215
- <zeebe:input source="=&#34;&#10;&#10;---&#10;&#10;&#34; + task.prompt + (if (blackboardBrief = null) then &#34;&#34; else blackboardBrief) + (if (baseBranchBrief = null) then &#34;&#34; else baseBranchBrief)" target="appendPrompt" />
295
+ <zeebe:input source="=&#34;&#10;&#10;---&#10;&#10;&#34; + task.prompt + (if (blackboardBrief = null) then &#34;&#34; else blackboardBrief) + (if (baseBranchBrief = null) then &#34;&#34; else baseBranchBrief) + (if (resolvedArtifacts = null or count(resolvedArtifacts[item != null]) = 0) then &#34;&#34; else (&#34;&#10;&#10;---&#10;&#10;**Bound producer capabilities (inter-epic gate).** This epic depends on capabilities another epic in the set just published. Build/install/clone against EXACTLY these published versions (the ones first carrying the awaited capability), never merely the newest:&#10;&#10;&#34; + string join(resolvedArtifacts[item != null], &#34;&#10;&#34;)))" target="appendPrompt" />
216
296
  <zeebe:output source="=status" target="status" />
217
297
  <zeebe:output source="=question" target="question" />
218
298
  </zeebe:ioMapping>
@@ -370,7 +450,12 @@
370
450
  <bpmn:endEvent id="End" name="Fleet dispatched">
371
451
  <bpmn:incoming>f_toEnd</bpmn:incoming>
372
452
  </bpmn:endEvent>
373
- <bpmn:sequenceFlow id="f_toEnsureBase" sourceRef="Start" targetRef="ensure-base-branch" />
453
+ <bpmn:sequenceFlow id="f_toReadinessGw" sourceRef="Start" targetRef="gw-readiness" />
454
+ <bpmn:sequenceFlow id="f_readiness_gate" name="dependent" sourceRef="gw-readiness" targetRef="readiness-preflight">
455
+ <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">=readinessProbes != null and count(readinessProbes) &gt; 0</bpmn:conditionExpression>
456
+ </bpmn:sequenceFlow>
457
+ <bpmn:sequenceFlow id="f_readiness_skip" name="root" sourceRef="gw-readiness" targetRef="ensure-base-branch" />
458
+ <bpmn:sequenceFlow id="f_readiness_done" sourceRef="readiness-preflight" targetRef="ensure-base-branch" />
374
459
  <bpmn:sequenceFlow id="f_toPlan" sourceRef="ensure-base-branch" targetRef="plan" />
375
460
  <bpmn:sequenceFlow id="f_toRecordPlan" sourceRef="plan" targetRef="record-plan" />
376
461
  <bpmn:sequenceFlow id="f_toReviewPlan" sourceRef="record-plan" targetRef="review-plan" />
@@ -427,399 +512,537 @@
427
512
  <dc:Bounds x="63" y="272" width="70" height="28" />
428
513
  </bpmndi:BPMNLabel>
429
514
  </bpmndi:BPMNShape>
515
+ <bpmndi:BPMNShape id="BPMNShape_gw-readiness" bpmnElement="gw-readiness" isMarkerVisible="true">
516
+ <dc:Bounds x="216" y="224" width="50" height="50" />
517
+ <bpmndi:BPMNLabel>
518
+ <dc:Bounds x="204" y="163" width="74" height="56" />
519
+ </bpmndi:BPMNLabel>
520
+ </bpmndi:BPMNShape>
521
+ <bpmndi:BPMNShape id="BPMNShape_readiness-preflight" bpmnElement="readiness-preflight">
522
+ <dc:Bounds x="366" y="369" width="100" height="80" />
523
+ </bpmndi:BPMNShape>
430
524
  <bpmndi:BPMNShape id="BPMNShape_ensure-base-branch" bpmnElement="ensure-base-branch">
431
- <dc:Bounds x="216" y="209" width="100" height="80" />
525
+ <dc:Bounds x="566" y="209" width="100" height="80" />
432
526
  </bpmndi:BPMNShape>
433
527
  <bpmndi:BPMNShape id="BPMNShape_plan" bpmnElement="plan">
434
- <dc:Bounds x="416" y="209" width="100" height="80" />
528
+ <dc:Bounds x="766" y="209" width="100" height="80" />
435
529
  </bpmndi:BPMNShape>
436
530
  <bpmndi:BPMNShape id="BPMNShape_record-plan" bpmnElement="record-plan">
437
- <dc:Bounds x="616" y="209" width="100" height="80" />
531
+ <dc:Bounds x="966" y="209" width="100" height="80" />
438
532
  </bpmndi:BPMNShape>
439
533
  <bpmndi:BPMNShape id="BPMNShape_review-plan" bpmnElement="review-plan">
440
- <dc:Bounds x="816" y="209" width="100" height="80" />
534
+ <dc:Bounds x="1166" y="209" width="100" height="80" />
441
535
  </bpmndi:BPMNShape>
442
536
  <bpmndi:BPMNShape id="BPMNShape_record-plan-review" bpmnElement="record-plan-review">
443
- <dc:Bounds x="1016" y="209" width="100" height="80" />
537
+ <dc:Bounds x="1366" y="209" width="100" height="80" />
444
538
  </bpmndi:BPMNShape>
445
539
  <bpmndi:BPMNShape id="BPMNShape_gw-plan-review" bpmnElement="gw-plan-review" isMarkerVisible="true">
446
- <dc:Bounds x="1216" y="224" width="50" height="50" />
540
+ <dc:Bounds x="1566" y="224" width="50" height="50" />
447
541
  <bpmndi:BPMNLabel>
448
- <dc:Bounds x="1168" y="279" width="67" height="28" />
542
+ <dc:Bounds x="1518" y="279" width="67" height="28" />
449
543
  </bpmndi:BPMNLabel>
450
544
  </bpmndi:BPMNShape>
451
545
  <bpmndi:BPMNShape id="BPMNShape_plan-review-decision" bpmnElement="plan-review-decision">
452
- <dc:Bounds x="1366" y="369" width="100" height="80" />
546
+ <dc:Bounds x="1716" y="369" width="100" height="80" />
453
547
  </bpmndi:BPMNShape>
454
548
  <bpmndi:BPMNShape id="BPMNShape_gw-plan-answer" bpmnElement="gw-plan-answer" isMarkerVisible="true">
455
- <dc:Bounds x="1566" y="384" width="50" height="50" />
549
+ <dc:Bounds x="1916" y="384" width="50" height="50" />
456
550
  <bpmndi:BPMNLabel>
457
- <dc:Bounds x="1621" y="395" width="67" height="28" />
551
+ <dc:Bounds x="1971" y="395" width="67" height="28" />
458
552
  </bpmndi:BPMNLabel>
459
553
  </bpmndi:BPMNShape>
460
554
  <bpmndi:BPMNShape id="BPMNShape_select-wave" bpmnElement="select-wave">
461
- <dc:Bounds x="1716" y="209" width="100" height="80" />
555
+ <dc:Bounds x="2066" y="209" width="100" height="80" />
462
556
  </bpmndi:BPMNShape>
463
557
  <bpmndi:BPMNShape id="BPMNShape_implement" bpmnElement="implement" isExpanded="true">
464
- <dc:Bounds x="1916" y="80" width="952" height="338" />
558
+ <dc:Bounds x="2266" y="80" width="952" height="338" />
465
559
  </bpmndi:BPMNShape>
466
560
  <bpmndi:BPMNShape id="BPMNShape_record-wave" bpmnElement="record-wave">
467
- <dc:Bounds x="2968" y="209" width="100" height="80" />
561
+ <dc:Bounds x="3318" y="209" width="100" height="80" />
468
562
  </bpmndi:BPMNShape>
469
563
  <bpmndi:BPMNShape id="BPMNShape_gw-trial-needed" bpmnElement="gw-trial-needed" isMarkerVisible="true">
470
- <dc:Bounds x="3168" y="224" width="50" height="50" />
564
+ <dc:Bounds x="3518" y="224" width="50" height="50" />
471
565
  <bpmndi:BPMNLabel>
472
- <dc:Bounds x="3149" y="205" width="88" height="14" />
566
+ <dc:Bounds x="3499" y="205" width="88" height="14" />
473
567
  </bpmndi:BPMNLabel>
474
568
  </bpmndi:BPMNShape>
475
569
  <bpmndi:BPMNShape id="BPMNShape_trial-merge" bpmnElement="trial-merge">
476
- <dc:Bounds x="3318" y="849" width="100" height="80" />
570
+ <dc:Bounds x="3668" y="849" width="100" height="80" />
477
571
  </bpmndi:BPMNShape>
478
572
  <bpmndi:BPMNShape id="BPMNShape_record-trial-merge" bpmnElement="record-trial-merge">
479
- <dc:Bounds x="3518" y="849" width="100" height="80" />
573
+ <dc:Bounds x="3868" y="849" width="100" height="80" />
480
574
  </bpmndi:BPMNShape>
481
575
  <bpmndi:BPMNShape id="BPMNShape_gw-trial" bpmnElement="gw-trial" isMarkerVisible="true">
482
- <dc:Bounds x="3718" y="864" width="50" height="50" />
576
+ <dc:Bounds x="4068" y="864" width="50" height="50" />
483
577
  <bpmndi:BPMNLabel>
484
- <dc:Bounds x="3708" y="919" width="71" height="14" />
578
+ <dc:Bounds x="4058" y="919" width="71" height="14" />
485
579
  </bpmndi:BPMNLabel>
486
580
  </bpmndi:BPMNShape>
487
581
  <bpmndi:BPMNShape id="BPMNShape_trial-merge-decision" bpmnElement="trial-merge-decision">
488
- <dc:Bounds x="3868" y="369" width="100" height="80" />
582
+ <dc:Bounds x="4218" y="369" width="100" height="80" />
489
583
  </bpmndi:BPMNShape>
490
584
  <bpmndi:BPMNShape id="BPMNShape_resolve-trial-attention" bpmnElement="resolve-trial-attention">
491
- <dc:Bounds x="4068" y="369" width="100" height="80" />
585
+ <dc:Bounds x="4418" y="369" width="100" height="80" />
492
586
  </bpmndi:BPMNShape>
493
587
  <bpmndi:BPMNShape id="BPMNShape_gw-trial-answer" bpmnElement="gw-trial-answer" isMarkerVisible="true">
494
- <dc:Bounds x="4268" y="384" width="50" height="50" />
588
+ <dc:Bounds x="4618" y="384" width="50" height="50" />
495
589
  <bpmndi:BPMNLabel>
496
- <dc:Bounds x="4267" y="439" width="53" height="14" />
590
+ <dc:Bounds x="4617" y="439" width="53" height="14" />
497
591
  </bpmndi:BPMNLabel>
498
592
  </bpmndi:BPMNShape>
499
593
  <bpmndi:BPMNShape id="BPMNShape_gw-more" bpmnElement="gw-more" isMarkerVisible="true">
500
- <dc:Bounds x="4418" y="224" width="50" height="50" />
594
+ <dc:Bounds x="4768" y="224" width="50" height="50" />
501
595
  <bpmndi:BPMNLabel>
502
- <dc:Bounds x="4341" y="279" width="84" height="14" />
596
+ <dc:Bounds x="4691" y="279" width="84" height="14" />
503
597
  </bpmndi:BPMNLabel>
504
598
  </bpmndi:BPMNShape>
505
599
  <bpmndi:BPMNShape id="BPMNShape_wait-wave-merged" bpmnElement="wait-wave-merged">
506
- <dc:Bounds x="4600" y="391" width="36" height="36" />
600
+ <dc:Bounds x="4950" y="391" width="36" height="36" />
507
601
  <bpmndi:BPMNLabel>
508
- <dc:Bounds x="4579" y="358" width="78" height="28" />
602
+ <dc:Bounds x="4929" y="358" width="78" height="28" />
509
603
  </bpmndi:BPMNLabel>
510
604
  </bpmndi:BPMNShape>
511
605
  <bpmndi:BPMNShape id="BPMNShape_record-results" bpmnElement="record-results">
512
- <dc:Bounds x="4568" y="209" width="100" height="80" />
606
+ <dc:Bounds x="4918" y="209" width="100" height="80" />
513
607
  </bpmndi:BPMNShape>
514
608
  <bpmndi:BPMNShape id="BPMNShape_End" bpmnElement="End">
515
- <dc:Bounds x="4768" y="231" width="36" height="36" />
609
+ <dc:Bounds x="5118" y="231" width="36" height="36" />
516
610
  <bpmndi:BPMNLabel>
517
- <dc:Bounds x="4749" y="272" width="74" height="28" />
611
+ <dc:Bounds x="5099" y="272" width="74" height="28" />
518
612
  </bpmndi:BPMNLabel>
519
613
  </bpmndi:BPMNShape>
520
614
  <bpmndi:BPMNShape id="BPMNShape_be_plan_sla" bpmnElement="be_plan_sla">
521
- <dc:Bounds x="1398" y="431" width="36" height="36" />
615
+ <dc:Bounds x="1748" y="431" width="36" height="36" />
522
616
  <bpmndi:BPMNLabel>
523
- <dc:Bounds x="1374" y="512" width="84" height="14" />
617
+ <dc:Bounds x="1724" y="512" width="84" height="14" />
524
618
  </bpmndi:BPMNLabel>
525
619
  </bpmndi:BPMNShape>
526
620
  <bpmndi:BPMNShape id="BPMNShape_be_trial_sla" bpmnElement="be_trial_sla">
527
- <dc:Bounds x="3900" y="431" width="36" height="36" />
621
+ <dc:Bounds x="4250" y="431" width="36" height="36" />
528
622
  <bpmndi:BPMNLabel>
529
- <dc:Bounds x="3816" y="512" width="84" height="14" />
623
+ <dc:Bounds x="4166" y="512" width="84" height="14" />
530
624
  </bpmndi:BPMNLabel>
531
625
  </bpmndi:BPMNShape>
532
- <bpmndi:BPMNEdge id="BPMNEdge_f_toEnsureBase" bpmnElement="f_toEnsureBase">
626
+ <bpmndi:BPMNEdge id="BPMNEdge_f_toReadinessGw" bpmnElement="f_toReadinessGw">
533
627
  <di:waypoint x="116" y="249" />
534
628
  <di:waypoint x="216" y="249" />
535
629
  </bpmndi:BPMNEdge>
630
+ <bpmndi:BPMNEdge id="BPMNEdge_f_readiness_skip" bpmnElement="f_readiness_skip">
631
+ <di:waypoint x="266" y="249" />
632
+ <di:waypoint x="566" y="249" />
633
+ <bpmndi:BPMNLabel>
634
+ <dc:Bounds x="400" y="227" width="32" height="14" />
635
+ </bpmndi:BPMNLabel>
636
+ </bpmndi:BPMNEdge>
536
637
  <bpmndi:BPMNEdge id="BPMNEdge_f_toPlan" bpmnElement="f_toPlan">
537
- <di:waypoint x="316" y="249" />
538
- <di:waypoint x="416" y="249" />
638
+ <di:waypoint x="666" y="249" />
639
+ <di:waypoint x="766" y="249" />
539
640
  </bpmndi:BPMNEdge>
540
641
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlan" bpmnElement="f_toRecordPlan">
541
- <di:waypoint x="516" y="249" />
542
- <di:waypoint x="616" y="249" />
642
+ <di:waypoint x="866" y="249" />
643
+ <di:waypoint x="966" y="249" />
543
644
  </bpmndi:BPMNEdge>
544
645
  <bpmndi:BPMNEdge id="BPMNEdge_f_toReviewPlan" bpmnElement="f_toReviewPlan">
545
- <di:waypoint x="716" y="249" />
546
- <di:waypoint x="816" y="249" />
646
+ <di:waypoint x="1066" y="249" />
647
+ <di:waypoint x="1166" y="249" />
547
648
  </bpmndi:BPMNEdge>
548
649
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordPlanReview" bpmnElement="f_toRecordPlanReview">
549
- <di:waypoint x="916" y="249" />
550
- <di:waypoint x="1016" y="249" />
650
+ <di:waypoint x="1266" y="249" />
651
+ <di:waypoint x="1366" y="249" />
551
652
  </bpmndi:BPMNEdge>
552
653
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanReview" bpmnElement="f_toGwPlanReview">
553
- <di:waypoint x="1116" y="249" />
554
- <di:waypoint x="1216" y="249" />
654
+ <di:waypoint x="1466" y="249" />
655
+ <di:waypoint x="1566" y="249" />
555
656
  </bpmndi:BPMNEdge>
556
657
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_proceed" bpmnElement="f_plan_proceed">
557
- <di:waypoint x="1266" y="249" />
558
- <di:waypoint x="1716" y="249" />
658
+ <di:waypoint x="1616" y="249" />
659
+ <di:waypoint x="2066" y="249" />
559
660
  <bpmndi:BPMNLabel>
560
- <dc:Bounds x="1399" y="227" width="60" height="14" />
661
+ <dc:Bounds x="1749" y="227" width="60" height="14" />
561
662
  </bpmndi:BPMNLabel>
562
663
  </bpmndi:BPMNEdge>
563
664
  <bpmndi:BPMNEdge id="BPMNEdge_f_toImplement" bpmnElement="f_toImplement">
564
- <di:waypoint x="1816" y="249" />
565
- <di:waypoint x="1916" y="249" />
665
+ <di:waypoint x="2166" y="249" />
666
+ <di:waypoint x="2266" y="249" />
566
667
  </bpmndi:BPMNEdge>
567
668
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordWave" bpmnElement="f_toRecordWave">
568
- <di:waypoint x="2868" y="249" />
569
- <di:waypoint x="2968" y="249" />
669
+ <di:waypoint x="3218" y="249" />
670
+ <di:waypoint x="3318" y="249" />
570
671
  </bpmndi:BPMNEdge>
571
672
  <bpmndi:BPMNEdge id="BPMNEdge_f_toTrialNeeded" bpmnElement="f_toTrialNeeded">
572
- <di:waypoint x="3068" y="249" />
573
- <di:waypoint x="3168" y="249" />
673
+ <di:waypoint x="3418" y="249" />
674
+ <di:waypoint x="3518" y="249" />
574
675
  </bpmndi:BPMNEdge>
575
676
  <bpmndi:BPMNEdge id="BPMNEdge_f_skipTrialMerge" bpmnElement="f_skipTrialMerge">
576
- <di:waypoint x="3218" y="249" />
577
- <di:waypoint x="4418" y="249" />
677
+ <di:waypoint x="3568" y="249" />
678
+ <di:waypoint x="4768" y="249" />
578
679
  <bpmndi:BPMNLabel>
579
- <dc:Bounds x="3740" y="227" width="32" height="14" />
680
+ <dc:Bounds x="4090" y="227" width="32" height="14" />
580
681
  </bpmndi:BPMNLabel>
581
682
  </bpmndi:BPMNEdge>
582
683
  <bpmndi:BPMNEdge id="BPMNEdge_f_done" bpmnElement="f_done">
583
- <di:waypoint x="4468" y="249" />
584
- <di:waypoint x="4568" y="249" />
684
+ <di:waypoint x="4818" y="249" />
685
+ <di:waypoint x="4918" y="249" />
585
686
  <bpmndi:BPMNLabel>
586
- <dc:Bounds x="4502" y="227" width="32" height="14" />
687
+ <dc:Bounds x="4852" y="227" width="32" height="14" />
587
688
  </bpmndi:BPMNLabel>
588
689
  </bpmndi:BPMNEdge>
589
690
  <bpmndi:BPMNEdge id="BPMNEdge_f_toEnd" bpmnElement="f_toEnd">
590
- <di:waypoint x="4668" y="249" />
591
- <di:waypoint x="4768" y="249" />
691
+ <di:waypoint x="5018" y="249" />
692
+ <di:waypoint x="5118" y="249" />
592
693
  </bpmndi:BPMNEdge>
593
694
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_revise" bpmnElement="f_plan_answer_revise">
594
- <di:waypoint x="1591" y="434" />
595
- <di:waypoint x="1591" y="489" />
596
- <di:waypoint x="466" y="489" />
597
- <di:waypoint x="466" y="289" />
695
+ <di:waypoint x="1941" y="434" />
696
+ <di:waypoint x="1941" y="489" />
697
+ <di:waypoint x="816" y="489" />
698
+ <di:waypoint x="816" y="289" />
598
699
  <bpmndi:BPMNLabel>
599
- <dc:Bounds x="1006" y="467" width="46" height="14" />
700
+ <dc:Bounds x="1356" y="467" width="46" height="14" />
600
701
  </bpmndi:BPMNLabel>
601
702
  </bpmndi:BPMNEdge>
602
703
  <bpmndi:BPMNEdge id="BPMNEdge_f_toRecordTrialMerge" bpmnElement="f_toRecordTrialMerge">
603
- <di:waypoint x="3418" y="889" />
604
- <di:waypoint x="3518" y="889" />
704
+ <di:waypoint x="3768" y="889" />
705
+ <di:waypoint x="3868" y="889" />
605
706
  </bpmndi:BPMNEdge>
606
707
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrial" bpmnElement="f_toGwTrial">
607
- <di:waypoint x="3618" y="889" />
608
- <di:waypoint x="3718" y="889" />
708
+ <di:waypoint x="3968" y="889" />
709
+ <di:waypoint x="4068" y="889" />
609
710
  </bpmndi:BPMNEdge>
610
711
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialProceed" bpmnElement="f_trialProceed">
611
- <di:waypoint x="3768" y="889" />
612
- <di:waypoint x="4443" y="889" />
613
- <di:waypoint x="4443" y="274" />
712
+ <di:waypoint x="4118" y="889" />
713
+ <di:waypoint x="4793" y="889" />
714
+ <di:waypoint x="4793" y="274" />
614
715
  <bpmndi:BPMNLabel>
615
- <dc:Bounds x="4079" y="867" width="53" height="14" />
716
+ <dc:Bounds x="4429" y="867" width="53" height="14" />
616
717
  </bpmndi:BPMNLabel>
617
718
  </bpmndi:BPMNEdge>
618
719
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerRerun" bpmnElement="f_trialAnswerRerun">
619
- <di:waypoint x="4293" y="384" />
620
- <di:waypoint x="4293" y="349" />
621
- <di:waypoint x="3368" y="349" />
622
- <di:waypoint x="3368" y="849" />
720
+ <di:waypoint x="4643" y="384" />
721
+ <di:waypoint x="4643" y="349" />
722
+ <di:waypoint x="3718" y="349" />
723
+ <di:waypoint x="3718" y="849" />
623
724
  <bpmndi:BPMNLabel>
624
- <dc:Bounds x="3808" y="327" width="46" height="14" />
725
+ <dc:Bounds x="4158" y="327" width="46" height="14" />
726
+ </bpmndi:BPMNLabel>
727
+ </bpmndi:BPMNEdge>
728
+ <bpmndi:BPMNEdge id="BPMNEdge_f_readiness_gate" bpmnElement="f_readiness_gate">
729
+ <di:waypoint x="241" y="274" />
730
+ <di:waypoint x="241" y="409" />
731
+ <di:waypoint x="366" y="409" />
732
+ <bpmndi:BPMNLabel>
733
+ <dc:Bounds x="246" y="335" width="67" height="14" />
625
734
  </bpmndi:BPMNLabel>
626
735
  </bpmndi:BPMNEdge>
627
736
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_escalate" bpmnElement="f_plan_escalate">
628
- <di:waypoint x="1241" y="274" />
629
- <di:waypoint x="1241" y="409" />
630
- <di:waypoint x="1366" y="409" />
737
+ <di:waypoint x="1591" y="274" />
738
+ <di:waypoint x="1591" y="409" />
739
+ <di:waypoint x="1716" y="409" />
631
740
  <bpmndi:BPMNLabel>
632
- <dc:Bounds x="1246" y="335" width="67" height="14" />
741
+ <dc:Bounds x="1596" y="335" width="67" height="14" />
633
742
  </bpmndi:BPMNLabel>
634
743
  </bpmndi:BPMNEdge>
635
744
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_answer_proceed" bpmnElement="f_plan_answer_proceed">
636
- <di:waypoint x="1591" y="384" />
637
- <di:waypoint x="1591" y="249" />
638
- <di:waypoint x="1716" y="249" />
745
+ <di:waypoint x="1941" y="384" />
746
+ <di:waypoint x="1941" y="249" />
747
+ <di:waypoint x="2066" y="249" />
639
748
  <bpmndi:BPMNLabel>
640
- <dc:Bounds x="1596" y="310" width="53" height="14" />
749
+ <dc:Bounds x="1946" y="310" width="53" height="14" />
641
750
  </bpmndi:BPMNLabel>
642
751
  </bpmndi:BPMNEdge>
643
752
  <bpmndi:BPMNEdge id="BPMNEdge_f_runTrialMerge" bpmnElement="f_runTrialMerge">
644
- <di:waypoint x="3193" y="274" />
645
- <di:waypoint x="3193" y="889" />
646
- <di:waypoint x="3318" y="889" />
753
+ <di:waypoint x="3543" y="274" />
754
+ <di:waypoint x="3543" y="889" />
755
+ <di:waypoint x="3668" y="889" />
647
756
  <bpmndi:BPMNLabel>
648
- <dc:Bounds x="3198" y="575" width="25" height="14" />
757
+ <dc:Bounds x="3548" y="575" width="25" height="14" />
649
758
  </bpmndi:BPMNLabel>
650
759
  </bpmndi:BPMNEdge>
651
760
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialEscalate" bpmnElement="f_trialEscalate">
652
- <di:waypoint x="3743" y="864" />
653
- <di:waypoint x="3743" y="409" />
654
- <di:waypoint x="3868" y="409" />
761
+ <di:waypoint x="4093" y="864" />
762
+ <di:waypoint x="4093" y="409" />
763
+ <di:waypoint x="4218" y="409" />
655
764
  <bpmndi:BPMNLabel>
656
- <dc:Bounds x="3748" y="630" width="85" height="14" />
765
+ <dc:Bounds x="4098" y="630" width="85" height="14" />
657
766
  </bpmndi:BPMNLabel>
658
767
  </bpmndi:BPMNEdge>
659
768
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerProceed" bpmnElement="f_trialAnswerProceed">
660
- <di:waypoint x="4293" y="384" />
661
- <di:waypoint x="4293" y="249" />
662
- <di:waypoint x="4418" y="249" />
769
+ <di:waypoint x="4643" y="384" />
770
+ <di:waypoint x="4643" y="249" />
771
+ <di:waypoint x="4768" y="249" />
663
772
  <bpmndi:BPMNLabel>
664
- <dc:Bounds x="4298" y="310" width="53" height="14" />
773
+ <dc:Bounds x="4648" y="310" width="53" height="14" />
665
774
  </bpmndi:BPMNLabel>
666
775
  </bpmndi:BPMNEdge>
667
776
  <bpmndi:BPMNEdge id="BPMNEdge_f_trialAnswerAbandon" bpmnElement="f_trialAnswerAbandon">
668
- <di:waypoint x="4293" y="384" />
669
- <di:waypoint x="4293" y="220" />
670
- <di:waypoint x="4548" y="220" />
671
- <di:waypoint x="4548" y="249" />
672
- <di:waypoint x="4568" y="249" />
777
+ <di:waypoint x="4643" y="384" />
778
+ <di:waypoint x="4643" y="220" />
779
+ <di:waypoint x="4898" y="220" />
780
+ <di:waypoint x="4898" y="249" />
781
+ <di:waypoint x="4918" y="249" />
673
782
  <bpmndi:BPMNLabel>
674
- <dc:Bounds x="4394" y="198" width="53" height="14" />
783
+ <dc:Bounds x="4744" y="198" width="53" height="14" />
675
784
  </bpmndi:BPMNLabel>
676
785
  </bpmndi:BPMNEdge>
677
786
  <bpmndi:BPMNEdge id="BPMNEdge_f_moreWaves" bpmnElement="f_moreWaves">
678
- <di:waypoint x="4468" y="249" />
679
- <di:waypoint x="4488" y="249" />
680
- <di:waypoint x="4488" y="274" />
681
- <di:waypoint x="4522" y="274" />
682
- <di:waypoint x="4522" y="429" />
683
- <di:waypoint x="4600" y="429" />
684
- <di:waypoint x="4600" y="447" />
685
- <di:waypoint x="4618" y="447" />
686
- <di:waypoint x="4618" y="427" />
787
+ <di:waypoint x="4818" y="249" />
788
+ <di:waypoint x="4838" y="249" />
789
+ <di:waypoint x="4838" y="274" />
790
+ <di:waypoint x="4872" y="274" />
791
+ <di:waypoint x="4872" y="429" />
792
+ <di:waypoint x="4950" y="429" />
793
+ <di:waypoint x="4950" y="447" />
794
+ <di:waypoint x="4968" y="447" />
795
+ <di:waypoint x="4968" y="427" />
687
796
  <bpmndi:BPMNLabel>
688
- <dc:Bounds x="4527" y="345" width="35" height="14" />
797
+ <dc:Bounds x="4877" y="345" width="35" height="14" />
689
798
  </bpmndi:BPMNLabel>
690
799
  </bpmndi:BPMNEdge>
800
+ <bpmndi:BPMNEdge id="BPMNEdge_f_readiness_done" bpmnElement="f_readiness_done">
801
+ <di:waypoint x="466" y="409" />
802
+ <di:waypoint x="616" y="409" />
803
+ <di:waypoint x="616" y="289" />
804
+ </bpmndi:BPMNEdge>
691
805
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwPlanAnswer" bpmnElement="f_toGwPlanAnswer">
692
- <di:waypoint x="1466" y="409" />
693
- <di:waypoint x="1566" y="409" />
806
+ <di:waypoint x="1816" y="409" />
807
+ <di:waypoint x="1916" y="409" />
694
808
  </bpmndi:BPMNEdge>
695
809
  <bpmndi:BPMNEdge id="BPMNEdge_f_toGwTrialAnswer" bpmnElement="f_toGwTrialAnswer">
696
- <di:waypoint x="3968" y="409" />
697
- <di:waypoint x="4068" y="409" />
810
+ <di:waypoint x="4318" y="409" />
811
+ <di:waypoint x="4418" y="409" />
698
812
  </bpmndi:BPMNEdge>
699
813
  <bpmndi:BPMNEdge id="BPMNEdge_f_resolveToTrialAnswer" bpmnElement="f_resolveToTrialAnswer">
700
- <di:waypoint x="4168" y="409" />
701
- <di:waypoint x="4268" y="409" />
814
+ <di:waypoint x="4518" y="409" />
815
+ <di:waypoint x="4618" y="409" />
702
816
  </bpmndi:BPMNEdge>
703
817
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_revise" bpmnElement="f_plan_revise">
704
- <di:waypoint x="1241" y="224" />
705
- <di:waypoint x="1241" y="189" />
706
- <di:waypoint x="466" y="189" />
707
- <di:waypoint x="466" y="209" />
818
+ <di:waypoint x="1591" y="224" />
819
+ <di:waypoint x="1591" y="189" />
820
+ <di:waypoint x="816" y="189" />
821
+ <di:waypoint x="816" y="209" />
708
822
  <bpmndi:BPMNLabel>
709
- <dc:Bounds x="831" y="167" width="46" height="14" />
823
+ <dc:Bounds x="1181" y="167" width="46" height="14" />
710
824
  </bpmndi:BPMNLabel>
711
825
  </bpmndi:BPMNEdge>
712
826
  <bpmndi:BPMNEdge id="BPMNEdge_f_waveMerged" bpmnElement="f_waveMerged">
713
- <di:waypoint x="4618" y="427" />
714
- <di:waypoint x="4618" y="489" />
715
- <di:waypoint x="1766" y="489" />
716
- <di:waypoint x="1766" y="289" />
827
+ <di:waypoint x="4968" y="427" />
828
+ <di:waypoint x="4968" y="489" />
829
+ <di:waypoint x="2116" y="489" />
830
+ <di:waypoint x="2116" y="289" />
717
831
  </bpmndi:BPMNEdge>
718
832
  <bpmndi:BPMNEdge id="BPMNEdge_f_plan_sla" bpmnElement="f_plan_sla">
719
- <di:waypoint x="1416" y="467" />
720
- <di:waypoint x="1416" y="487" />
721
- <di:waypoint x="466" y="487" />
722
- <di:waypoint x="466" y="289" />
833
+ <di:waypoint x="1766" y="467" />
834
+ <di:waypoint x="1766" y="487" />
835
+ <di:waypoint x="816" y="487" />
836
+ <di:waypoint x="816" y="289" />
723
837
  <bpmndi:BPMNLabel>
724
- <dc:Bounds x="901" y="454" width="81" height="28" />
838
+ <dc:Bounds x="1251" y="454" width="81" height="28" />
725
839
  </bpmndi:BPMNLabel>
726
840
  </bpmndi:BPMNEdge>
727
841
  <bpmndi:BPMNEdge id="BPMNEdge_f_trial_sla" bpmnElement="f_trial_sla">
728
- <di:waypoint x="3918" y="467" />
729
- <di:waypoint x="3918" y="829" />
730
- <di:waypoint x="3368" y="829" />
731
- <di:waypoint x="3368" y="849" />
842
+ <di:waypoint x="4268" y="467" />
843
+ <di:waypoint x="4268" y="829" />
844
+ <di:waypoint x="3718" y="829" />
845
+ <di:waypoint x="3718" y="849" />
732
846
  <bpmndi:BPMNLabel>
733
- <dc:Bounds x="3606" y="796" width="74" height="28" />
847
+ <dc:Bounds x="3956" y="796" width="74" height="28" />
734
848
  </bpmndi:BPMNLabel>
735
849
  </bpmndi:BPMNEdge>
736
850
  <bpmndi:BPMNShape id="BPMNShape_w_start" bpmnElement="w_start">
737
- <dc:Bounds x="1956" y="142" width="36" height="36" />
851
+ <dc:Bounds x="2306" y="142" width="36" height="36" />
738
852
  <bpmndi:BPMNLabel>
739
- <dc:Bounds x="1957" y="183" width="34" height="14" />
853
+ <dc:Bounds x="2307" y="183" width="34" height="14" />
740
854
  </bpmndi:BPMNLabel>
741
855
  </bpmndi:BPMNShape>
742
856
  <bpmndi:BPMNShape id="BPMNShape_implement-task" bpmnElement="implement-task">
743
- <dc:Bounds x="2092" y="120" width="100" height="80" />
857
+ <dc:Bounds x="2442" y="120" width="100" height="80" />
744
858
  </bpmndi:BPMNShape>
745
859
  <bpmndi:BPMNShape id="BPMNShape_w_gw" bpmnElement="w_gw" isMarkerVisible="true">
746
- <dc:Bounds x="2292" y="135" width="50" height="50" />
860
+ <dc:Bounds x="2642" y="135" width="50" height="50" />
747
861
  <bpmndi:BPMNLabel>
748
- <dc:Bounds x="2280" y="116" width="74" height="14" />
862
+ <dc:Bounds x="2630" y="116" width="74" height="14" />
749
863
  </bpmndi:BPMNLabel>
750
864
  </bpmndi:BPMNShape>
751
865
  <bpmndi:BPMNShape id="BPMNShape_feature-escalation" bpmnElement="feature-escalation">
752
- <dc:Bounds x="2442" y="280" width="100" height="80" />
866
+ <dc:Bounds x="2792" y="280" width="100" height="80" />
753
867
  </bpmndi:BPMNShape>
754
868
  <bpmndi:BPMNShape id="BPMNShape_w_gw_answer" bpmnElement="w_gw_answer" isMarkerVisible="true">
755
- <dc:Bounds x="2642" y="295" width="50" height="50" />
869
+ <dc:Bounds x="2992" y="295" width="50" height="50" />
756
870
  <bpmndi:BPMNLabel>
757
- <dc:Bounds x="2639" y="276" width="56" height="14" />
871
+ <dc:Bounds x="2989" y="276" width="56" height="14" />
758
872
  </bpmndi:BPMNLabel>
759
873
  </bpmndi:BPMNShape>
760
874
  <bpmndi:BPMNShape id="BPMNShape_w_end" bpmnElement="w_end">
761
- <dc:Bounds x="2792" y="142" width="36" height="36" />
875
+ <dc:Bounds x="3142" y="142" width="36" height="36" />
762
876
  <bpmndi:BPMNLabel>
763
- <dc:Bounds x="2777" y="123" width="66" height="14" />
877
+ <dc:Bounds x="3127" y="123" width="66" height="14" />
764
878
  </bpmndi:BPMNLabel>
765
879
  </bpmndi:BPMNShape>
766
880
  <bpmndi:BPMNShape id="BPMNShape_be_feature_sla" bpmnElement="be_feature_sla">
767
- <dc:Bounds x="2474" y="342" width="36" height="36" />
881
+ <dc:Bounds x="2824" y="342" width="36" height="36" />
768
882
  <bpmndi:BPMNLabel>
769
- <dc:Bounds x="2450" y="423" width="84" height="14" />
883
+ <dc:Bounds x="2800" y="423" width="84" height="14" />
770
884
  </bpmndi:BPMNLabel>
771
885
  </bpmndi:BPMNShape>
772
886
  <bpmndi:BPMNEdge id="BPMNEdge_w_toImpl" bpmnElement="w_toImpl">
773
- <di:waypoint x="1992" y="160" />
774
- <di:waypoint x="2092" y="160" />
887
+ <di:waypoint x="2342" y="160" />
888
+ <di:waypoint x="2442" y="160" />
775
889
  </bpmndi:BPMNEdge>
776
890
  <bpmndi:BPMNEdge id="BPMNEdge_w_toGw" bpmnElement="w_toGw">
777
- <di:waypoint x="2192" y="160" />
778
- <di:waypoint x="2292" y="160" />
891
+ <di:waypoint x="2542" y="160" />
892
+ <di:waypoint x="2642" y="160" />
779
893
  </bpmndi:BPMNEdge>
780
894
  <bpmndi:BPMNEdge id="BPMNEdge_w_done" bpmnElement="w_done">
781
- <di:waypoint x="2342" y="160" />
782
- <di:waypoint x="2792" y="160" />
895
+ <di:waypoint x="2692" y="160" />
896
+ <di:waypoint x="3142" y="160" />
783
897
  <bpmndi:BPMNLabel>
784
- <dc:Bounds x="2551" y="138" width="32" height="14" />
898
+ <dc:Bounds x="2901" y="138" width="32" height="14" />
785
899
  </bpmndi:BPMNLabel>
786
900
  </bpmndi:BPMNEdge>
787
901
  <bpmndi:BPMNEdge id="BPMNEdge_w_abandon" bpmnElement="w_abandon">
788
- <di:waypoint x="2692" y="320" />
789
- <di:waypoint x="2810" y="320" />
790
- <di:waypoint x="2810" y="178" />
902
+ <di:waypoint x="3042" y="320" />
903
+ <di:waypoint x="3160" y="320" />
904
+ <di:waypoint x="3160" y="178" />
791
905
  <bpmndi:BPMNLabel>
792
- <dc:Bounds x="2725" y="298" width="53" height="14" />
906
+ <dc:Bounds x="3075" y="298" width="53" height="14" />
793
907
  </bpmndi:BPMNLabel>
794
908
  </bpmndi:BPMNEdge>
795
909
  <bpmndi:BPMNEdge id="BPMNEdge_w_escalate" bpmnElement="w_escalate">
796
- <di:waypoint x="2317" y="185" />
797
- <di:waypoint x="2317" y="320" />
798
- <di:waypoint x="2442" y="320" />
910
+ <di:waypoint x="2667" y="185" />
911
+ <di:waypoint x="2667" y="320" />
912
+ <di:waypoint x="2792" y="320" />
799
913
  <bpmndi:BPMNLabel>
800
- <dc:Bounds x="2322" y="246" width="67" height="14" />
914
+ <dc:Bounds x="2672" y="246" width="67" height="14" />
801
915
  </bpmndi:BPMNLabel>
802
916
  </bpmndi:BPMNEdge>
803
917
  <bpmndi:BPMNEdge id="BPMNEdge_w_toAnswerGw" bpmnElement="w_toAnswerGw">
804
- <di:waypoint x="2542" y="320" />
805
- <di:waypoint x="2642" y="320" />
918
+ <di:waypoint x="2892" y="320" />
919
+ <di:waypoint x="2992" y="320" />
806
920
  </bpmndi:BPMNEdge>
807
921
  <bpmndi:BPMNEdge id="BPMNEdge_w_sla" bpmnElement="w_sla">
808
- <di:waypoint x="2492" y="378" />
809
- <di:waypoint x="2492" y="398" />
810
- <di:waypoint x="2810" y="398" />
811
- <di:waypoint x="2810" y="178" />
922
+ <di:waypoint x="2842" y="378" />
923
+ <di:waypoint x="2842" y="398" />
924
+ <di:waypoint x="3160" y="398" />
925
+ <di:waypoint x="3160" y="178" />
812
926
  <bpmndi:BPMNLabel>
813
- <dc:Bounds x="2567" y="365" width="88" height="28" />
927
+ <dc:Bounds x="2917" y="365" width="88" height="28" />
814
928
  </bpmndi:BPMNLabel>
815
929
  </bpmndi:BPMNEdge>
816
930
  <bpmndi:BPMNEdge id="BPMNEdge_w_answerLoop" bpmnElement="w_answerLoop">
817
- <di:waypoint x="2667" y="345" />
818
- <di:waypoint x="2667" y="400" />
819
- <di:waypoint x="2142" y="400" />
820
- <di:waypoint x="2142" y="200" />
931
+ <di:waypoint x="3017" y="345" />
932
+ <di:waypoint x="3017" y="400" />
933
+ <di:waypoint x="2492" y="400" />
934
+ <di:waypoint x="2492" y="200" />
935
+ <bpmndi:BPMNLabel>
936
+ <dc:Bounds x="2730" y="378" width="49" height="14" />
937
+ </bpmndi:BPMNLabel>
938
+ </bpmndi:BPMNEdge>
939
+ </bpmndi:BPMNPlane>
940
+ </bpmndi:BPMNDiagram>
941
+ <bpmndi:BPMNDiagram id="BPMNDiagram_readiness-preflight">
942
+ <bpmndi:BPMNPlane id="BPMNPlane_readiness-preflight" bpmnElement="readiness-preflight">
943
+ <bpmndi:BPMNShape id="BPMNShape_pf_start" bpmnElement="pf_start">
944
+ <dc:Bounds x="80" y="102" width="36" height="36" />
945
+ <bpmndi:BPMNLabel>
946
+ <dc:Bounds x="61" y="143" width="74" height="28" />
947
+ </bpmndi:BPMNLabel>
948
+ </bpmndi:BPMNShape>
949
+ <bpmndi:BPMNShape id="BPMNShape_preflight-probe" bpmnElement="preflight-probe">
950
+ <dc:Bounds x="216" y="80" width="100" height="80" />
951
+ </bpmndi:BPMNShape>
952
+ <bpmndi:BPMNShape id="BPMNShape_pf_gw" bpmnElement="pf_gw" isMarkerVisible="true">
953
+ <dc:Bounds x="416" y="95" width="50" height="50" />
954
+ <bpmndi:BPMNLabel>
955
+ <dc:Bounds x="344" y="150" width="74" height="28" />
956
+ </bpmndi:BPMNLabel>
957
+ </bpmndi:BPMNShape>
958
+ <bpmndi:BPMNShape id="BPMNShape_readiness-escalation-pf" bpmnElement="readiness-escalation-pf">
959
+ <dc:Bounds x="566" y="80" width="100" height="80" />
960
+ </bpmndi:BPMNShape>
961
+ <bpmndi:BPMNShape id="BPMNShape_pf_gw_res" bpmnElement="pf_gw_res" isMarkerVisible="true">
962
+ <dc:Bounds x="766" y="95" width="50" height="50" />
963
+ <bpmndi:BPMNLabel>
964
+ <dc:Bounds x="751" y="76" width="81" height="14" />
965
+ </bpmndi:BPMNLabel>
966
+ </bpmndi:BPMNShape>
967
+ <bpmndi:BPMNShape id="BPMNShape_pf_end" bpmnElement="pf_end">
968
+ <dc:Bounds x="916" y="102" width="36" height="36" />
969
+ <bpmndi:BPMNLabel>
970
+ <dc:Bounds x="896" y="69" width="76" height="28" />
971
+ </bpmndi:BPMNLabel>
972
+ </bpmndi:BPMNShape>
973
+ <bpmndi:BPMNShape id="BPMNShape_be_pf_probe_timeout" bpmnElement="be_pf_probe_timeout">
974
+ <dc:Bounds x="248" y="142" width="36" height="36" />
975
+ <bpmndi:BPMNLabel>
976
+ <dc:Bounds x="225" y="203" width="83" height="28" />
977
+ </bpmndi:BPMNLabel>
978
+ </bpmndi:BPMNShape>
979
+ <bpmndi:BPMNShape id="BPMNShape_be_pf_sla" bpmnElement="be_pf_sla">
980
+ <dc:Bounds x="598" y="142" width="36" height="36" />
981
+ <bpmndi:BPMNLabel>
982
+ <dc:Bounds x="574" y="223" width="84" height="14" />
983
+ </bpmndi:BPMNLabel>
984
+ </bpmndi:BPMNShape>
985
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_toProbe" bpmnElement="pf_toProbe">
986
+ <di:waypoint x="116" y="120" />
987
+ <di:waypoint x="216" y="120" />
988
+ </bpmndi:BPMNEdge>
989
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_probed" bpmnElement="pf_probed">
990
+ <di:waypoint x="316" y="120" />
991
+ <di:waypoint x="416" y="120" />
992
+ </bpmndi:BPMNEdge>
993
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_escalate" bpmnElement="pf_escalate">
994
+ <di:waypoint x="466" y="120" />
995
+ <di:waypoint x="566" y="120" />
996
+ <bpmndi:BPMNLabel>
997
+ <dc:Bounds x="480" y="98" width="53" height="14" />
998
+ </bpmndi:BPMNLabel>
999
+ </bpmndi:BPMNEdge>
1000
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_toResolution" bpmnElement="pf_toResolution">
1001
+ <di:waypoint x="666" y="120" />
1002
+ <di:waypoint x="766" y="120" />
1003
+ </bpmndi:BPMNEdge>
1004
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_proceed" bpmnElement="pf_proceed">
1005
+ <di:waypoint x="816" y="120" />
1006
+ <di:waypoint x="916" y="120" />
1007
+ <bpmndi:BPMNLabel>
1008
+ <dc:Bounds x="824" y="128" width="84" height="14" />
1009
+ </bpmndi:BPMNLabel>
1010
+ </bpmndi:BPMNEdge>
1011
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_ready" bpmnElement="pf_ready">
1012
+ <di:waypoint x="441" y="145" />
1013
+ <di:waypoint x="441" y="200" />
1014
+ <di:waypoint x="934" y="200" />
1015
+ <di:waypoint x="934" y="138" />
1016
+ <bpmndi:BPMNLabel>
1017
+ <dc:Bounds x="668" y="178" width="39" height="14" />
1018
+ </bpmndi:BPMNLabel>
1019
+ </bpmndi:BPMNEdge>
1020
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_abandon" bpmnElement="pf_abandon">
1021
+ <di:waypoint x="816" y="120" />
1022
+ <di:waypoint x="916" y="120" />
1023
+ <bpmndi:BPMNLabel>
1024
+ <dc:Bounds x="840" y="158" width="53" height="14" />
1025
+ </bpmndi:BPMNLabel>
1026
+ </bpmndi:BPMNEdge>
1027
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_probeTimedOut" bpmnElement="pf_probeTimedOut">
1028
+ <di:waypoint x="266" y="178" />
1029
+ <di:waypoint x="266" y="198" />
1030
+ <di:waypoint x="336" y="198" />
1031
+ <di:waypoint x="336" y="82" />
1032
+ <di:waypoint x="546" y="82" />
1033
+ <di:waypoint x="546" y="120" />
1034
+ <di:waypoint x="566" y="120" />
1035
+ <bpmndi:BPMNLabel>
1036
+ <dc:Bounds x="341" y="93" width="67" height="14" />
1037
+ </bpmndi:BPMNLabel>
1038
+ </bpmndi:BPMNEdge>
1039
+ <bpmndi:BPMNEdge id="BPMNEdge_pf_sla" bpmnElement="pf_sla">
1040
+ <di:waypoint x="616" y="178" />
1041
+ <di:waypoint x="616" y="198" />
1042
+ <di:waypoint x="934" y="198" />
1043
+ <di:waypoint x="934" y="138" />
821
1044
  <bpmndi:BPMNLabel>
822
- <dc:Bounds x="2380" y="378" width="49" height="14" />
1045
+ <dc:Bounds x="731" y="165" width="88" height="28" />
823
1046
  </bpmndi:BPMNLabel>
824
1047
  </bpmndi:BPMNEdge>
825
1048
  </bpmndi:BPMNPlane>