Squashed 'SpiffWorkflow/' changes from 450ef3bcd..98c6294f1

98c6294f1 Merge pull request #287 from sartography/feature/workflow_data_exceptions
d40a1da59 Workflow Data Exceptions were broken in the previous error refactor.  This assures we are getting good messages from these errors.
a156378e1 Merge pull request #286 from sartography/feature/inclusive-gateway-support
7f6e398c2 bypass unnecessary checks in gateway joins
ade21a894 revert a few things
e1cf75202 Merge branch 'main' into feature/inclusive-gateway-support
15a0a4414 revert change to MultiChoice and handle no defaults in BPMN specs
e1469e6bb add support for diverging inclusive gateways
71fd86386 really prevent non-default flows without conditions
924759d9b clean up join specs
7378639d3 Merge pull request #284 from sartography/feature/improved-timer-events
dc8d139d2 remove useless method
530f23697 Merge branch 'main' into feature/improved-timer-events
307cca9c5 partially clean up existing gateways
0a344285e clean up task parsers
2cef997d1 add waiting_events method to bpmn workflow
48091c407 serializer migration script and miscellaneous fixes to serialization
61316854b store internal timer data as string/float
389c14c4c add some tests for parsing durations
582bc9482 convert timers to iso 8601
6dfd7ebe9 remove extraneous calls to update
6bd429529 clean up tests
d56e9912f remove useless method

git-subtree-dir: SpiffWorkflow
git-subtree-split: 98c6294f1240aee599cd98bcee58d121cb57b331
This commit is contained in:
Dan 2023-01-26 18:17:35 -05:00
parent af293a91d1
commit b8d3d5d84b
38 changed files with 2959 additions and 2204 deletions

View File

@ -3,7 +3,8 @@
from SpiffWorkflow.bpmn.specs.ExclusiveGateway import ExclusiveGateway
from SpiffWorkflow.bpmn.specs.UserTask import UserTask
from SpiffWorkflow.bpmn.parser.BpmnParser import BpmnParser
from SpiffWorkflow.bpmn.parser.task_parsers import ExclusiveGatewayParser, UserTaskParser
from SpiffWorkflow.bpmn.parser.TaskParser import TaskParser
from SpiffWorkflow.bpmn.parser.task_parsers import ConditionalGatewayParser
from SpiffWorkflow.bpmn.parser.util import full_tag
from SpiffWorkflow.bpmn.serializer.bpmn_converters import BpmnTaskSpecConverter
@ -38,7 +39,7 @@ class TestUserTask(UserTask):
def deserialize(self, serializer, wf_spec, s_state):
return serializer.deserialize_generic(wf_spec, s_state, TestUserTask)
class TestExclusiveGatewayParser(ExclusiveGatewayParser):
class TestExclusiveGatewayParser(ConditionalGatewayParser):
def parse_condition(self, sequence_flow_node):
cond = super().parse_condition(sequence_flow_node)
@ -62,7 +63,7 @@ class TestUserTaskConverter(BpmnTaskSpecConverter):
class TestBpmnParser(BpmnParser):
OVERRIDE_PARSER_CLASSES = {
full_tag('userTask'): (UserTaskParser, TestUserTask),
full_tag('userTask'): (TaskParser, TestUserTask),
full_tag('exclusiveGateway'): (TestExclusiveGatewayParser, ExclusiveGateway),
full_tag('callActivity'): (CallActivityParser, CallActivity)
}

View File

@ -25,7 +25,10 @@ class CallActivityDataTest(BpmnWorkflowTestCase):
with self.assertRaises(WorkflowDataException) as exc:
self.advance_to_subprocess()
self.assertEqual(exc.var.name,'in_2')
self.assertEqual("'in_2' was not found in the task data. "
"You are missing a required Data Input for a call activity.",
str(exc.exception))
self.assertEqual(exc.exception.data_input.name,'in_2')
def testCallActivityMissingOutput(self):
@ -40,7 +43,10 @@ class CallActivityDataTest(BpmnWorkflowTestCase):
with self.assertRaises(WorkflowDataException) as exc:
self.complete_subprocess()
self.assertEqual(exc.var.name,'out_2')
self.assertEqual("'out_2' was not found in the task data. A Data Output was not provided as promised.",
str(exc.exception))
self.assertEqual(exc.exception.data_output.name,'out_2')
def actual_test(self, save_restore=False):

View File

@ -0,0 +1,39 @@
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from SpiffWorkflow.exceptions import WorkflowTaskException
from .BpmnWorkflowTestCase import BpmnWorkflowTestCase
class InclusiveGatewayTest(BpmnWorkflowTestCase):
def setUp(self):
spec, subprocess = self.load_workflow_spec('inclusive_gateway.bpmn', 'main')
self.workflow = BpmnWorkflow(spec)
self.workflow.do_engine_steps()
def testDefaultConditionOnly(self):
self.set_data({'v': -1, 'u': -1, 'w': -1})
self.workflow.do_engine_steps()
self.assertTrue(self.workflow.is_completed())
self.assertDictEqual(self.workflow.data, {'v': 0, 'u': -1, 'w': -1})
def testDefaultConditionOnlySaveRestore(self):
self.set_data({'v': -1, 'u': -1, 'w': -1})
self.save_restore()
self.workflow.do_engine_steps()
self.assertTrue(self.workflow.is_completed())
self.assertDictEqual(self.workflow.data, {'v': 0, 'u': -1, 'w': -1})
def testNoPathFromSecondGateway(self):
self.set_data({'v': 0, 'u': -1, 'w': -1})
self.assertRaises(WorkflowTaskException, self.workflow.do_engine_steps)
def testParallelCondition(self):
self.set_data({'v': 0, 'u': 1, 'w': 1})
self.workflow.do_engine_steps()
self.assertTrue(self.workflow.is_completed())
self.assertDictEqual(self.workflow.data, {'v': 0, 'u': 1, 'w': 1})
def set_data(self, value):
task = self.workflow.get_ready_user_tasks()[0]
task.data = value
task.complete()

View File

@ -5,7 +5,6 @@ import datetime
import time
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
__author__ = 'kellym'
@ -16,9 +15,8 @@ class NITimerDurationTest(BpmnWorkflowTestCase):
Non-Interrupting Timer boundary test
"""
def setUp(self):
self.script_engine = PythonScriptEngine(default_globals={"timedelta": datetime.timedelta})
spec, subprocesses = self.load_workflow_spec('timer-non-interrupt-boundary.bpmn', 'NonInterruptTimer')
self.workflow = BpmnWorkflow(spec, subprocesses, script_engine=self.script_engine)
self.workflow = BpmnWorkflow(spec, subprocesses)
def load_spec(self):
return
@ -31,57 +29,44 @@ class NITimerDurationTest(BpmnWorkflowTestCase):
def actual_test(self,save_restore = False):
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
ready_tasks[0].data['work_done'] = 'No'
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
event = self.workflow.get_tasks_from_spec_name('Event_0jyy8ao')[0]
self.assertEqual(event.state, TaskState.WAITING)
loopcount = 0
# test bpmn has a timeout of .25s
# we should terminate loop before that.
starttime = datetime.datetime.now()
while loopcount < 10:
ready_tasks = self.workflow.get_tasks(TaskState.READY)
if len(ready_tasks) > 1:
break
# test bpmn has a timeout of .2s; we should terminate loop before that.
# The subprocess will also wait
while len(self.workflow.get_waiting_tasks()) == 2 and loopcount < 10:
if save_restore:
self.save_restore()
self.workflow.script_engine = self.script_engine
#self.assertEqual(1, len(self.workflow.get_tasks(Task.WAITING)))
time.sleep(0.1)
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
loopcount = loopcount +1
endtime = datetime.datetime.now()
duration = endtime-starttime
# appropriate time here is .5 seconds
# due to the .3 seconds that we loop and then
# the two conditions that we complete after the timer completes.
self.assertEqual(duration<datetime.timedelta(seconds=.5),True)
self.assertEqual(duration>datetime.timedelta(seconds=.2),True)
for task in ready_tasks:
if task.task_spec == 'GetReason':
task.data['delay_reason'] = 'Just Because'
else:
task.data['work_done'] = 'Yes'
self.workflow.complete_task_from_id(task.id)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
ready_tasks[0].data['experience'] = 'Great!'
self.workflow.complete_task_from_id(ready_tasks[0].id)
# There should be one ready task until the boundary event fires
self.assertEqual(len(self.workflow.get_ready_user_tasks()), 1)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
loopcount += 1
endtime = datetime.datetime.now()
duration = endtime - starttime
# appropriate time here is .5 seconds due to the .3 seconds that we loop and then
self.assertEqual(duration < datetime.timedelta(seconds=.5), True)
self.assertEqual(duration > datetime.timedelta(seconds=.2), True)
ready_tasks = self.workflow.get_ready_user_tasks()
# Now there should be two.
self.assertEqual(len(ready_tasks), 2)
for task in ready_tasks:
if task.task_spec.name == 'GetReason':
task.data['delay_reason'] = 'Just Because'
elif task.task_spec.name == 'Activity_Work':
task.data['work_done'] = 'Yes'
task.complete()
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
self.assertEqual(self.workflow.is_completed(),True)
self.assertEqual(self.workflow.last_task.data,{'work_done': 'Yes', 'experience': 'Great!'})
print (self.workflow.last_task.data)
print(duration)
self.assertEqual(self.workflow.last_task.data, {'work_done': 'Yes', 'delay_reason': 'Just Because'})
def suite():

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_17fwemw" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_17fwemw" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="MultiInstance" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="StartEvent_1">
<bpmn:outgoing>Flow_0t6p1sb</bpmn:outgoing>
@ -40,7 +40,7 @@
<bpmn:incoming>Flow_1dah8xt</bpmn:incoming>
<bpmn:outgoing>Flow_0io0g18</bpmn:outgoing>
</bpmn:manualTask>
<bpmn:exclusiveGateway id="Gateway_1cn7vsp">
<bpmn:exclusiveGateway id="Gateway_1cn7vsp" default="Flow_1sx7n9u">
<bpmn:incoming>Flow_0io0g18</bpmn:incoming>
<bpmn:incoming>Flow_0i1bv5g</bpmn:incoming>
<bpmn:outgoing>Flow_1sx7n9u</bpmn:outgoing>
@ -52,85 +52,6 @@
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="MultiInstance">
<bpmndi:BPMNEdge id="Flow_0ugjw69_di" bpmnElement="Flow_0ugjw69">
<di:waypoint x="810" y="117" />
<di:waypoint x="912" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0t6p1sb_di" bpmnElement="Flow_0t6p1sb">
<di:waypoint x="208" y="117" />
<di:waypoint x="230" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_1g0pmib_di" bpmnElement="Event_End">
<dc:Bounds x="912" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="903" y="75" width="54" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="172" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="159" y="142" width="64" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1iyilui_di" bpmnElement="Activity_Loop">
<dc:Bounds x="710" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_088tnzu_di" bpmnElement="Activity_088tnzu">
<dc:Bounds x="230" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0ds4mp0_di" bpmnElement="Flow_0ds4mp0">
<di:waypoint x="330" y="117" />
<di:waypoint x="345" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Gateway_07go3pk_di" bpmnElement="Gateway_07go3pk" isMarkerVisible="true">
<dc:Bounds x="615" y="92" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="602" y="62" width="78" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1oo4mpj_di" bpmnElement="Flow_1oo4mpj">
<di:waypoint x="640" y="142" />
<di:waypoint x="640" y="330" />
<di:waypoint x="930" y="330" />
<di:waypoint x="930" y="135" />
<bpmndi:BPMNLabel>
<dc:Bounds x="745" y="312" width="80" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0u92n7b_di" bpmnElement="Flow_0u92n7b">
<di:waypoint x="665" y="117" />
<di:waypoint x="710" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="670" y="99" width="35" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0io0g18_di" bpmnElement="Flow_0io0g18">
<di:waypoint x="530" y="117" />
<di:waypoint x="535" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Gateway_08wnx3s_di" bpmnElement="Gateway_08wnx3s" isMarkerVisible="true">
<dc:Bounds x="345" y="92" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="341" y="62" width="58" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1dah8xt_di" bpmnElement="Flow_1dah8xt">
<di:waypoint x="395" y="117" />
<di:waypoint x="430" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="395" y="99" width="35" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_0ow7pu7_di" bpmnElement="Activity_0flre28">
<dc:Bounds x="430" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1cn7vsp_di" bpmnElement="Gateway_1cn7vsp" isMarkerVisible="true">
<dc:Bounds x="535" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1sx7n9u_di" bpmnElement="Flow_1sx7n9u">
<di:waypoint x="585" y="117" />
<di:waypoint x="615" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0i1bv5g_di" bpmnElement="Flow_0i1bv5g">
<di:waypoint x="370" y="142" />
<di:waypoint x="370" y="280" />
@ -140,6 +61,85 @@
<dc:Bounds x="448" y="262" width="34" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1sx7n9u_di" bpmnElement="Flow_1sx7n9u">
<di:waypoint x="585" y="117" />
<di:waypoint x="615" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1dah8xt_di" bpmnElement="Flow_1dah8xt">
<di:waypoint x="395" y="117" />
<di:waypoint x="430" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="395" y="99" width="35" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0io0g18_di" bpmnElement="Flow_0io0g18">
<di:waypoint x="530" y="117" />
<di:waypoint x="535" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0u92n7b_di" bpmnElement="Flow_0u92n7b">
<di:waypoint x="665" y="117" />
<di:waypoint x="710" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="670" y="99" width="35" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1oo4mpj_di" bpmnElement="Flow_1oo4mpj">
<di:waypoint x="640" y="142" />
<di:waypoint x="640" y="330" />
<di:waypoint x="930" y="330" />
<di:waypoint x="930" y="135" />
<bpmndi:BPMNLabel>
<dc:Bounds x="745" y="312" width="80" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ds4mp0_di" bpmnElement="Flow_0ds4mp0">
<di:waypoint x="330" y="117" />
<di:waypoint x="345" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ugjw69_di" bpmnElement="Flow_0ugjw69">
<di:waypoint x="810" y="117" />
<di:waypoint x="912" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0t6p1sb_di" bpmnElement="Flow_0t6p1sb">
<di:waypoint x="208" y="117" />
<di:waypoint x="230" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="172" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="159" y="142" width="64" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1g0pmib_di" bpmnElement="Event_End">
<dc:Bounds x="912" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="903" y="75" width="54" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1iyilui_di" bpmnElement="Activity_Loop">
<dc:Bounds x="710" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_088tnzu_di" bpmnElement="Activity_088tnzu">
<dc:Bounds x="230" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_07go3pk_di" bpmnElement="Gateway_07go3pk" isMarkerVisible="true">
<dc:Bounds x="615" y="92" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="602" y="62" width="78" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_08wnx3s_di" bpmnElement="Gateway_08wnx3s" isMarkerVisible="true">
<dc:Bounds x="345" y="92" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="341" y="62" width="58" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0ow7pu7_di" bpmnElement="Activity_0flre28">
<dc:Bounds x="430" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1cn7vsp_di" bpmnElement="Gateway_1cn7vsp" isMarkerVisible="true">
<dc:Bounds x="535" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-2fc8d290-3438-4612-ab5e-9e4275b62328" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:signavio="http://www.signavio.com" id="sid-2fc8d290-3438-4612-ab5e-9e4275b62328" targetNamespace="http://www.signavio.com/bpmn20" exporter="Camunda Modeler" exporterVersion="4.11.1" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<collaboration id="sid-57b12279-7637-4e61-a08d-6173a2240830">
<participant id="sid-6BD4C90B-DA06-4B4A-AFE2-12B17C92C450" name="Parallel Join Long Inclusive" processRef="sid-bae04828-c969-4480-8cfe-09ad1f97d81c">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
</participant>
</collaboration>
<process id="sid-bae04828-c969-4480-8cfe-09ad1f97d81c" isClosed="false" isExecutable="false" name="Parallel Join Long Inclusive" processType="None">
<process id="sid-bae04828-c969-4480-8cfe-09ad1f97d81c" name="Parallel Join Long Inclusive" processType="None" isClosed="false" isExecutable="false">
<laneSet id="sid-aeac4a42-8864-4379-ac00-1c7cf35d7ab6">
<lane id="sid-60200172-646E-4166-9CFB-1558C5A0F3E8" name="Tester">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue=""/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="" />
</extensionElements>
<flowNodeRef>sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF</flowNodeRef>
<flowNodeRef>sid-F4CFA154-9281-4579-B117-0859A2BFF7E8</flowNodeRef>
@ -54,240 +54,240 @@
</laneSet>
<startEvent id="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<outgoing>sid-54E118FA-9A24-434C-9E65-36F9D01FB43D</outgoing>
</startEvent>
<parallelGateway gatewayDirection="Diverging" id="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" name="">
<parallelGateway id="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-54E118FA-9A24-434C-9E65-36F9D01FB43D</incoming>
<outgoing>sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C</outgoing>
<outgoing>sid-C7247231-5152-424E-A240-B07B76E8F5EC</outgoing>
</parallelGateway>
<task completionQuantity="1" id="sid-E489DED4-8C38-4841-80BC-E514353C1B8C" isForCompensation="false" name="Thread 1 - Task 1" startQuantity="1">
<task id="sid-E489DED4-8C38-4841-80BC-E514353C1B8C" name="Thread 1 - Task 1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE</incoming>
<outgoing>sid-0204722F-5A92-4236-BBF1-C66123E14E22</outgoing>
</task>
<task completionQuantity="1" id="sid-B88338F7-5084-4532-9ABB-7387B1E5A664" isForCompensation="false" name="Thread 1 - Task 2" startQuantity="1">
<task id="sid-B88338F7-5084-4532-9ABB-7387B1E5A664" name="Thread 1 - Task 2">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-0204722F-5A92-4236-BBF1-C66123E14E22</incoming>
<outgoing>sid-699ED598-1AB9-4A3B-9315-9C89578FB017</outgoing>
</task>
<task completionQuantity="1" id="sid-35745597-A6C0-424B-884C-C5C23B60C942" isForCompensation="false" name="Thread 1 - Task 3" startQuantity="1">
<task id="sid-35745597-A6C0-424B-884C-C5C23B60C942" name="Thread 1 - Task 3">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-699ED598-1AB9-4A3B-9315-9C89578FB017</incoming>
<outgoing>sid-85116AFA-E95A-4384-9695-361C1A6070C3</outgoing>
</task>
<task completionQuantity="1" id="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114" isForCompensation="false" name="Thread 1 - Task 4" startQuantity="1">
<task id="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114" name="Thread 1 - Task 4">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-85116AFA-E95A-4384-9695-361C1A6070C3</incoming>
<outgoing>sid-84756278-D67A-4E65-AD96-24325F08E2D1</outgoing>
</task>
<task completionQuantity="1" id="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570" isForCompensation="false" name="Thread 2 - Task 2" startQuantity="1">
<task id="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570" name="Thread 2 - Task 2">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27</incoming>
<outgoing>sid-C132728C-7DAF-468C-A807-90A34847071E</outgoing>
</task>
<task completionQuantity="1" id="sid-A8E18F57-FC41-401D-A397-9264C3E48293" isForCompensation="false" name="Thread 2 - Task 3" startQuantity="1">
<task id="sid-A8E18F57-FC41-401D-A397-9264C3E48293" name="Thread 2 - Task 3">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-C132728C-7DAF-468C-A807-90A34847071E</incoming>
<outgoing>sid-4A3A7E6E-F79B-4842-860C-407DB9227023</outgoing>
</task>
<task completionQuantity="1" id="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD" isForCompensation="false" name="Thread 2 - Task 4" startQuantity="1">
<task id="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD" name="Thread 2 - Task 4">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-4A3A7E6E-F79B-4842-860C-407DB9227023</incoming>
<outgoing>sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4</outgoing>
</task>
<task completionQuantity="1" id="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08" isForCompensation="false" name="Thread 2 - Task 1" startQuantity="1">
<task id="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08" name="Thread 2 - Task 1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-D7D86B12-A88C-4072-9852-6DD62643556A</incoming>
<outgoing>sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27</outgoing>
</task>
<task completionQuantity="1" id="sid-107A993F-6302-4391-9BE2-068C9C7B693B" isForCompensation="false" name="Done" startQuantity="1">
<task id="sid-107A993F-6302-4391-9BE2-068C9C7B693B" name="Done">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-369B410B-EA82-4896-91FD-23FFF759494A</incoming>
<outgoing>sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D</outgoing>
</task>
<task completionQuantity="1" id="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C" isForCompensation="false" name="Thread 1 - Task 5" startQuantity="1">
<task id="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C" name="Thread 1 - Task 5">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-84756278-D67A-4E65-AD96-24325F08E2D1</incoming>
<outgoing>sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC</outgoing>
</task>
<task completionQuantity="1" id="sid-54BB293D-91B6-41B5-A5C4-423300D74D14" isForCompensation="false" name="Thread 1 - Task 6" startQuantity="1">
<task id="sid-54BB293D-91B6-41B5-A5C4-423300D74D14" name="Thread 1 - Task 6">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC</incoming>
<outgoing>sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11</outgoing>
</task>
<task completionQuantity="1" id="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0" isForCompensation="false" name="Thread 1 - Task 7" startQuantity="1">
<task id="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0" name="Thread 1 - Task 7">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11</incoming>
<outgoing>sid-13838920-8EE4-45CB-8F01-29F13CA13819</outgoing>
</task>
<task completionQuantity="1" id="sid-E6A08072-E35C-4545-9C66-B74B615F34C2" isForCompensation="false" name="Thread 1 - Task 8" startQuantity="1">
<task id="sid-E6A08072-E35C-4545-9C66-B74B615F34C2" name="Thread 1 - Task 8">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-13838920-8EE4-45CB-8F01-29F13CA13819</incoming>
<outgoing>sid-FAA04C3A-F55B-4947-850D-5A180D43BD61</outgoing>
</task>
<task completionQuantity="1" id="sid-BEC02819-27FE-4484-8FDA-08450F4DE618" isForCompensation="false" name="Thread 1 - Task 9" startQuantity="1">
<task id="sid-BEC02819-27FE-4484-8FDA-08450F4DE618" name="Thread 1 - Task 9">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-FAA04C3A-F55B-4947-850D-5A180D43BD61</incoming>
<outgoing>sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51</outgoing>
</task>
<task completionQuantity="1" id="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0" isForCompensation="false" name="Thread 1 - Task 10" startQuantity="1">
<task id="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0" name="Thread 1 - Task 10">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51</incoming>
<outgoing>sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9</outgoing>
</task>
<task completionQuantity="1" id="sid-08397892-678C-4706-A05F-8F6DAE9B5423" isForCompensation="false" name="Thread 1 - Task 11" startQuantity="1">
<task id="sid-08397892-678C-4706-A05F-8F6DAE9B5423" name="Thread 1 - Task 11">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9</incoming>
<outgoing>sid-661F5F14-5B94-4977-9827-20654AE2719B</outgoing>
</task>
<task completionQuantity="1" id="sid-3500C16F-8037-4987-9022-8E30AB6B0590" isForCompensation="false" name="Thread 1 - Task 12" startQuantity="1">
<task id="sid-3500C16F-8037-4987-9022-8E30AB6B0590" name="Thread 1 - Task 12">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-661F5F14-5B94-4977-9827-20654AE2719B</incoming>
<outgoing>sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E</outgoing>
</task>
<task completionQuantity="1" id="sid-A473B421-0981-49D8-BD5A-66832BD518EC" isForCompensation="false" name="Thread 2 - Task 5" startQuantity="1">
<task id="sid-A473B421-0981-49D8-BD5A-66832BD518EC" name="Thread 2 - Task 5">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4</incoming>
<outgoing>sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4</outgoing>
</task>
<task completionQuantity="1" id="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A" isForCompensation="false" name="Thread 2 - Task 6" startQuantity="1">
<task id="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A" name="Thread 2 - Task 6">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4</incoming>
<outgoing>sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84</outgoing>
</task>
<task completionQuantity="1" id="sid-D67A997E-C7CF-4581-8749-4F931D8737B5" isForCompensation="false" name="Thread 2 - Task 7" startQuantity="1">
<task id="sid-D67A997E-C7CF-4581-8749-4F931D8737B5" name="Thread 2 - Task 7">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84</incoming>
<outgoing>sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6</outgoing>
</task>
<task completionQuantity="1" id="sid-399AE395-D46F-4A30-B875-E904970AF141" isForCompensation="false" name="Thread 2 - Task 8" startQuantity="1">
<task id="sid-399AE395-D46F-4A30-B875-E904970AF141" name="Thread 2 - Task 8">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6</incoming>
<outgoing>sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C</outgoing>
</task>
<task completionQuantity="1" id="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA" isForCompensation="false" name="Thread 2 - Task 9" startQuantity="1">
<task id="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA" name="Thread 2 - Task 9">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C</incoming>
<outgoing>sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8</outgoing>
</task>
<task completionQuantity="1" id="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474" isForCompensation="false" name="Thread 2 - Task 10" startQuantity="1">
<task id="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474" name="Thread 2 - Task 10">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8</incoming>
<outgoing>sid-42540C95-8E89-4B6F-B133-F677FA72C9FF</outgoing>
</task>
<task completionQuantity="1" id="sid-CF5677F8-747F-4E95-953E-4DAB186958F4" isForCompensation="false" name="Thread 2 - Task 11" startQuantity="1">
<task id="sid-CF5677F8-747F-4E95-953E-4DAB186958F4" name="Thread 2 - Task 11">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-42540C95-8E89-4B6F-B133-F677FA72C9FF</incoming>
<outgoing>sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B</outgoing>
</task>
<task completionQuantity="1" id="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283" isForCompensation="false" name="Thread 2 - Task 12" startQuantity="1">
<task id="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283" name="Thread 2 - Task 12">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B</incoming>
<outgoing>sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D</outgoing>
</task>
<task completionQuantity="1" id="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF" isForCompensation="false" name="Thread 1 - Choose" startQuantity="1">
<task id="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF" name="Thread 1 - Choose">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C</incoming>
<outgoing>sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2</outgoing>
</task>
<exclusiveGateway gatewayDirection="Diverging" id="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" name="">
<exclusiveGateway id="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2</incoming>
<outgoing>sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE</outgoing>
<outgoing>sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416</outgoing>
</exclusiveGateway>
<task completionQuantity="1" id="sid-732095A1-B07A-4B08-A46B-277C12901DED" isForCompensation="false" name="Thread 1 - No Task" startQuantity="1">
<task id="sid-732095A1-B07A-4B08-A46B-277C12901DED" name="Thread 1 - No Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416</incoming>
<outgoing>sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB</outgoing>
</task>
<task completionQuantity="1" id="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74" isForCompensation="false" name="Thread 2 - Choose" startQuantity="1">
<task id="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74" name="Thread 2 - Choose">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-C7247231-5152-424E-A240-B07B76E8F5EC</incoming>
<outgoing>sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E</outgoing>
</task>
<exclusiveGateway gatewayDirection="Diverging" id="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" name="">
<exclusiveGateway id="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E</incoming>
<outgoing>sid-D7D86B12-A88C-4072-9852-6DD62643556A</outgoing>
<outgoing>sid-16EB4D98-7F77-4046-8CDD-E07C796542FE</outgoing>
</exclusiveGateway>
<task completionQuantity="1" id="sid-B2E34105-96D5-4020-85D9-C569BA42D618" isForCompensation="false" name="Thread 2 - No Task" startQuantity="1">
<task id="sid-B2E34105-96D5-4020-85D9-C569BA42D618" name="Thread 2 - No Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-16EB4D98-7F77-4046-8CDD-E07C796542FE</incoming>
<outgoing>sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D</outgoing>
</task>
<inclusiveGateway gatewayDirection="Converging" id="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" name="">
<inclusiveGateway id="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" name="" gatewayDirection="Converging" default="sid-369B410B-EA82-4896-91FD-23FFF759494A">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D</incoming>
<incoming>sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E</incoming>
@ -295,339 +295,359 @@
</inclusiveGateway>
<endEvent id="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D</incoming>
</endEvent>
<endEvent id="sid-4864A824-7467-421A-A654-83EE83F7681C" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB</incoming>
</endEvent>
<endEvent id="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D</incoming>
</endEvent>
<sequenceFlow id="sid-54E118FA-9A24-434C-9E65-36F9D01FB43D" name="" sourceRef="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF" targetRef="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8"/>
<sequenceFlow id="sid-699ED598-1AB9-4A3B-9315-9C89578FB017" name="" sourceRef="sid-B88338F7-5084-4532-9ABB-7387B1E5A664" targetRef="sid-35745597-A6C0-424B-884C-C5C23B60C942"/>
<sequenceFlow id="sid-85116AFA-E95A-4384-9695-361C1A6070C3" name="" sourceRef="sid-35745597-A6C0-424B-884C-C5C23B60C942" targetRef="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114"/>
<sequenceFlow id="sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27" name="" sourceRef="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08" targetRef="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570"/>
<sequenceFlow id="sid-C132728C-7DAF-468C-A807-90A34847071E" name="" sourceRef="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570" targetRef="sid-A8E18F57-FC41-401D-A397-9264C3E48293"/>
<sequenceFlow id="sid-4A3A7E6E-F79B-4842-860C-407DB9227023" name="" sourceRef="sid-A8E18F57-FC41-401D-A397-9264C3E48293" targetRef="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD"/>
<sequenceFlow id="sid-0204722F-5A92-4236-BBF1-C66123E14E22" name="" sourceRef="sid-E489DED4-8C38-4841-80BC-E514353C1B8C" targetRef="sid-B88338F7-5084-4532-9ABB-7387B1E5A664"/>
<sequenceFlow id="sid-84756278-D67A-4E65-AD96-24325F08E2D1" name="" sourceRef="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114" targetRef="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C"/>
<sequenceFlow id="sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC" name="" sourceRef="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C" targetRef="sid-54BB293D-91B6-41B5-A5C4-423300D74D14"/>
<sequenceFlow id="sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11" name="" sourceRef="sid-54BB293D-91B6-41B5-A5C4-423300D74D14" targetRef="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0"/>
<sequenceFlow id="sid-13838920-8EE4-45CB-8F01-29F13CA13819" name="" sourceRef="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0" targetRef="sid-E6A08072-E35C-4545-9C66-B74B615F34C2"/>
<sequenceFlow id="sid-FAA04C3A-F55B-4947-850D-5A180D43BD61" name="" sourceRef="sid-E6A08072-E35C-4545-9C66-B74B615F34C2" targetRef="sid-BEC02819-27FE-4484-8FDA-08450F4DE618"/>
<sequenceFlow id="sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51" name="" sourceRef="sid-BEC02819-27FE-4484-8FDA-08450F4DE618" targetRef="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0"/>
<sequenceFlow id="sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9" name="" sourceRef="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0" targetRef="sid-08397892-678C-4706-A05F-8F6DAE9B5423"/>
<sequenceFlow id="sid-661F5F14-5B94-4977-9827-20654AE2719B" name="" sourceRef="sid-08397892-678C-4706-A05F-8F6DAE9B5423" targetRef="sid-3500C16F-8037-4987-9022-8E30AB6B0590"/>
<sequenceFlow id="sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4" name="" sourceRef="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD" targetRef="sid-A473B421-0981-49D8-BD5A-66832BD518EC"/>
<sequenceFlow id="sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4" name="" sourceRef="sid-A473B421-0981-49D8-BD5A-66832BD518EC" targetRef="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A"/>
<sequenceFlow id="sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84" name="" sourceRef="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A" targetRef="sid-D67A997E-C7CF-4581-8749-4F931D8737B5"/>
<sequenceFlow id="sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6" name="" sourceRef="sid-D67A997E-C7CF-4581-8749-4F931D8737B5" targetRef="sid-399AE395-D46F-4A30-B875-E904970AF141"/>
<sequenceFlow id="sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C" name="" sourceRef="sid-399AE395-D46F-4A30-B875-E904970AF141" targetRef="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA"/>
<sequenceFlow id="sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8" name="" sourceRef="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA" targetRef="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474"/>
<sequenceFlow id="sid-42540C95-8E89-4B6F-B133-F677FA72C9FF" name="" sourceRef="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474" targetRef="sid-CF5677F8-747F-4E95-953E-4DAB186958F4"/>
<sequenceFlow id="sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B" name="" sourceRef="sid-CF5677F8-747F-4E95-953E-4DAB186958F4" targetRef="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283"/>
<sequenceFlow id="sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D" name="" sourceRef="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283" targetRef="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283"/>
<sequenceFlow id="sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E" name="" sourceRef="sid-3500C16F-8037-4987-9022-8E30AB6B0590" targetRef="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283"/>
<sequenceFlow id="sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C" name="" sourceRef="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" targetRef="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF"/>
<sequenceFlow id="sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2" name="" sourceRef="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF" targetRef="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3"/>
<sequenceFlow id="sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE" name="Yes" sourceRef="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" targetRef="sid-E489DED4-8C38-4841-80BC-E514353C1B8C"/>
<sequenceFlow id="sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416" name="No" sourceRef="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" targetRef="sid-732095A1-B07A-4B08-A46B-277C12901DED"/>
<sequenceFlow id="sid-C7247231-5152-424E-A240-B07B76E8F5EC" name="" sourceRef="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" targetRef="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74"/>
<sequenceFlow id="sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E" name="" sourceRef="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74" targetRef="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247"/>
<sequenceFlow id="sid-D7D86B12-A88C-4072-9852-6DD62643556A" name="Yes" sourceRef="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" targetRef="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08"/>
<sequenceFlow id="sid-16EB4D98-7F77-4046-8CDD-E07C796542FE" name="No" sourceRef="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" targetRef="sid-B2E34105-96D5-4020-85D9-C569BA42D618"/>
<sequenceFlow id="sid-369B410B-EA82-4896-91FD-23FFF759494A" name="" sourceRef="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" targetRef="sid-107A993F-6302-4391-9BE2-068C9C7B693B"/>
<sequenceFlow id="sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D" name="" sourceRef="sid-B2E34105-96D5-4020-85D9-C569BA42D618" targetRef="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B"/>
<sequenceFlow id="sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB" name="" sourceRef="sid-732095A1-B07A-4B08-A46B-277C12901DED" targetRef="sid-4864A824-7467-421A-A654-83EE83F7681C"/>
<sequenceFlow id="sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D" name="" sourceRef="sid-107A993F-6302-4391-9BE2-068C9C7B693B" targetRef="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B"/>
<sequenceFlow id="sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D" name="" sourceRef="sid-107A993F-6302-4391-9BE2-068C9C7B693B" targetRef="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B" />
<sequenceFlow id="sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB" name="" sourceRef="sid-732095A1-B07A-4B08-A46B-277C12901DED" targetRef="sid-4864A824-7467-421A-A654-83EE83F7681C" />
<sequenceFlow id="sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D" name="" sourceRef="sid-B2E34105-96D5-4020-85D9-C569BA42D618" targetRef="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B" />
<sequenceFlow id="sid-369B410B-EA82-4896-91FD-23FFF759494A" name="" sourceRef="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" targetRef="sid-107A993F-6302-4391-9BE2-068C9C7B693B" />
<sequenceFlow id="sid-16EB4D98-7F77-4046-8CDD-E07C796542FE" name="No" sourceRef="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" targetRef="sid-B2E34105-96D5-4020-85D9-C569BA42D618">
<conditionExpression xsi:type="tFormalExpression">choice == 'No'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-D7D86B12-A88C-4072-9852-6DD62643556A" name="Yes" sourceRef="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" targetRef="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08">
<conditionExpression xsi:type="tFormalExpression">choice == 'Yes'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E" name="" sourceRef="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74" targetRef="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" />
<sequenceFlow id="sid-C7247231-5152-424E-A240-B07B76E8F5EC" name="" sourceRef="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" targetRef="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74" />
<sequenceFlow id="sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416" name="No" sourceRef="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" targetRef="sid-732095A1-B07A-4B08-A46B-277C12901DED">
<conditionExpression xsi:type="tFormalExpression">choice == 'No'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE" name="Yes" sourceRef="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" targetRef="sid-E489DED4-8C38-4841-80BC-E514353C1B8C">
<conditionExpression xsi:type="tFormalExpression">choice == 'Yes'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2" name="" sourceRef="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF" targetRef="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" />
<sequenceFlow id="sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C" name="" sourceRef="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" targetRef="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF" />
<sequenceFlow id="sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E" name="" sourceRef="sid-3500C16F-8037-4987-9022-8E30AB6B0590" targetRef="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" />
<sequenceFlow id="sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D" name="" sourceRef="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283" targetRef="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" />
<sequenceFlow id="sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B" name="" sourceRef="sid-CF5677F8-747F-4E95-953E-4DAB186958F4" targetRef="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283" />
<sequenceFlow id="sid-42540C95-8E89-4B6F-B133-F677FA72C9FF" name="" sourceRef="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474" targetRef="sid-CF5677F8-747F-4E95-953E-4DAB186958F4" />
<sequenceFlow id="sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8" name="" sourceRef="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA" targetRef="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474" />
<sequenceFlow id="sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C" name="" sourceRef="sid-399AE395-D46F-4A30-B875-E904970AF141" targetRef="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA" />
<sequenceFlow id="sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6" name="" sourceRef="sid-D67A997E-C7CF-4581-8749-4F931D8737B5" targetRef="sid-399AE395-D46F-4A30-B875-E904970AF141" />
<sequenceFlow id="sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84" name="" sourceRef="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A" targetRef="sid-D67A997E-C7CF-4581-8749-4F931D8737B5" />
<sequenceFlow id="sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4" name="" sourceRef="sid-A473B421-0981-49D8-BD5A-66832BD518EC" targetRef="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A" />
<sequenceFlow id="sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4" name="" sourceRef="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD" targetRef="sid-A473B421-0981-49D8-BD5A-66832BD518EC" />
<sequenceFlow id="sid-661F5F14-5B94-4977-9827-20654AE2719B" name="" sourceRef="sid-08397892-678C-4706-A05F-8F6DAE9B5423" targetRef="sid-3500C16F-8037-4987-9022-8E30AB6B0590" />
<sequenceFlow id="sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9" name="" sourceRef="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0" targetRef="sid-08397892-678C-4706-A05F-8F6DAE9B5423" />
<sequenceFlow id="sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51" name="" sourceRef="sid-BEC02819-27FE-4484-8FDA-08450F4DE618" targetRef="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0" />
<sequenceFlow id="sid-FAA04C3A-F55B-4947-850D-5A180D43BD61" name="" sourceRef="sid-E6A08072-E35C-4545-9C66-B74B615F34C2" targetRef="sid-BEC02819-27FE-4484-8FDA-08450F4DE618" />
<sequenceFlow id="sid-13838920-8EE4-45CB-8F01-29F13CA13819" name="" sourceRef="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0" targetRef="sid-E6A08072-E35C-4545-9C66-B74B615F34C2" />
<sequenceFlow id="sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11" name="" sourceRef="sid-54BB293D-91B6-41B5-A5C4-423300D74D14" targetRef="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0" />
<sequenceFlow id="sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC" name="" sourceRef="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C" targetRef="sid-54BB293D-91B6-41B5-A5C4-423300D74D14" />
<sequenceFlow id="sid-84756278-D67A-4E65-AD96-24325F08E2D1" name="" sourceRef="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114" targetRef="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C" />
<sequenceFlow id="sid-0204722F-5A92-4236-BBF1-C66123E14E22" name="" sourceRef="sid-E489DED4-8C38-4841-80BC-E514353C1B8C" targetRef="sid-B88338F7-5084-4532-9ABB-7387B1E5A664" />
<sequenceFlow id="sid-4A3A7E6E-F79B-4842-860C-407DB9227023" name="" sourceRef="sid-A8E18F57-FC41-401D-A397-9264C3E48293" targetRef="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD" />
<sequenceFlow id="sid-C132728C-7DAF-468C-A807-90A34847071E" name="" sourceRef="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570" targetRef="sid-A8E18F57-FC41-401D-A397-9264C3E48293" />
<sequenceFlow id="sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27" name="" sourceRef="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08" targetRef="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570" />
<sequenceFlow id="sid-85116AFA-E95A-4384-9695-361C1A6070C3" name="" sourceRef="sid-35745597-A6C0-424B-884C-C5C23B60C942" targetRef="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114" />
<sequenceFlow id="sid-699ED598-1AB9-4A3B-9315-9C89578FB017" name="" sourceRef="sid-B88338F7-5084-4532-9ABB-7387B1E5A664" targetRef="sid-35745597-A6C0-424B-884C-C5C23B60C942" />
<sequenceFlow id="sid-54E118FA-9A24-434C-9E65-36F9D01FB43D" name="" sourceRef="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF" targetRef="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" />
</process>
<bpmndi:BPMNDiagram id="sid-d7f55d66-d70d-4f50-9532-31276aaea03a">
<bpmndi:BPMNPlane bpmnElement="sid-57b12279-7637-4e61-a08d-6173a2240830" id="sid-edae3a17-b904-4ec1-a288-9730ccde4694">
<bpmndi:BPMNShape bpmnElement="sid-6BD4C90B-DA06-4B4A-AFE2-12B17C92C450" id="sid-6BD4C90B-DA06-4B4A-AFE2-12B17C92C450_gui" isHorizontal="true">
<omgdc:Bounds height="1222.0" width="930.0" x="105.0" y="75.0"/>
<bpmndi:BPMNPlane id="sid-edae3a17-b904-4ec1-a288-9730ccde4694" bpmnElement="sid-57b12279-7637-4e61-a08d-6173a2240830">
<bpmndi:BPMNShape id="sid-6BD4C90B-DA06-4B4A-AFE2-12B17C92C450_gui" bpmnElement="sid-6BD4C90B-DA06-4B4A-AFE2-12B17C92C450" isHorizontal="true">
<omgdc:Bounds x="155" y="75" width="930" height="1222" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-60200172-646E-4166-9CFB-1558C5A0F3E8" id="sid-60200172-646E-4166-9CFB-1558C5A0F3E8_gui" isHorizontal="true">
<omgdc:Bounds height="1222.0" width="900.0" x="135.0" y="75.0"/>
<bpmndi:BPMNShape id="sid-60200172-646E-4166-9CFB-1558C5A0F3E8_gui" bpmnElement="sid-60200172-646E-4166-9CFB-1558C5A0F3E8" isHorizontal="true">
<omgdc:Bounds x="185" y="75" width="900" height="1222" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF" id="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF_gui">
<omgdc:Bounds height="30.0" width="30.0" x="180.0" y="135.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8" id="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8_gui">
<omgdc:Bounds height="40.0" width="40.0" x="265.0" y="130.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E489DED4-8C38-4841-80BC-E514353C1B8C" id="sid-E489DED4-8C38-4841-80BC-E514353C1B8C_gui">
<omgdc:Bounds height="80.0" width="100.0" x="570.0" y="255.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-B88338F7-5084-4532-9ABB-7387B1E5A664" id="sid-B88338F7-5084-4532-9ABB-7387B1E5A664_gui">
<omgdc:Bounds height="80.0" width="100.0" x="787.5" y="255.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-35745597-A6C0-424B-884C-C5C23B60C942" id="sid-35745597-A6C0-424B-884C-C5C23B60C942_gui">
<omgdc:Bounds height="80.0" width="100.0" x="781.5" y="375.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114" id="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114_gui">
<omgdc:Bounds height="80.0" width="100.0" x="781.5" y="495.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570" id="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570_gui">
<omgdc:Bounds height="80.0" width="100.0" x="241.5" y="585.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-A8E18F57-FC41-401D-A397-9264C3E48293" id="sid-A8E18F57-FC41-401D-A397-9264C3E48293_gui">
<omgdc:Bounds height="80.0" width="100.0" x="241.5" y="705.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD" id="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD_gui">
<omgdc:Bounds height="80.0" width="100.0" x="241.5" y="825.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08" id="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08_gui">
<omgdc:Bounds height="80.0" width="100.0" x="221.5" y="465.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-107A993F-6302-4391-9BE2-068C9C7B693B" id="sid-107A993F-6302-4391-9BE2-068C9C7B693B_gui">
<omgdc:Bounds height="80.0" width="100.0" x="691.5" y="1200.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C" id="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C_gui">
<omgdc:Bounds height="80.0" width="100.0" x="618.5" y="495.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-54BB293D-91B6-41B5-A5C4-423300D74D14" id="sid-54BB293D-91B6-41B5-A5C4-423300D74D14_gui">
<omgdc:Bounds height="80.0" width="100.0" x="438.5" y="495.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0" id="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0_gui">
<omgdc:Bounds height="80.0" width="100.0" x="438.5" y="637.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E6A08072-E35C-4545-9C66-B74B615F34C2" id="sid-E6A08072-E35C-4545-9C66-B74B615F34C2_gui">
<omgdc:Bounds height="80.0" width="100.0" x="616.5" y="637.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-BEC02819-27FE-4484-8FDA-08450F4DE618" id="sid-BEC02819-27FE-4484-8FDA-08450F4DE618_gui">
<omgdc:Bounds height="80.0" width="100.0" x="787.5" y="637.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0" id="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0_gui">
<omgdc:Bounds height="80.0" width="100.0" x="787.5" y="746.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-08397892-678C-4706-A05F-8F6DAE9B5423" id="sid-08397892-678C-4706-A05F-8F6DAE9B5423_gui">
<omgdc:Bounds height="80.0" width="100.0" x="787.5" y="885.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-3500C16F-8037-4987-9022-8E30AB6B0590" id="sid-3500C16F-8037-4987-9022-8E30AB6B0590_gui">
<omgdc:Bounds height="80.0" width="100.0" x="787.5" y="1005.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-A473B421-0981-49D8-BD5A-66832BD518EC" id="sid-A473B421-0981-49D8-BD5A-66832BD518EC_gui">
<omgdc:Bounds height="80.0" width="100.0" x="442.5" y="749.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A" id="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A_gui">
<omgdc:Bounds height="80.0" width="100.0" x="619.5" y="749.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-D67A997E-C7CF-4581-8749-4F931D8737B5" id="sid-D67A997E-C7CF-4581-8749-4F931D8737B5_gui">
<omgdc:Bounds height="80.0" width="100.0" x="619.5" y="884.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-399AE395-D46F-4A30-B875-E904970AF141" id="sid-399AE395-D46F-4A30-B875-E904970AF141_gui">
<omgdc:Bounds height="80.0" width="100.0" x="441.5" y="884.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA" id="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA_gui">
<omgdc:Bounds height="80.0" width="100.0" x="242.5" y="939.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474" id="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474_gui">
<omgdc:Bounds height="80.0" width="100.0" x="242.5" y="1076.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-CF5677F8-747F-4E95-953E-4DAB186958F4" id="sid-CF5677F8-747F-4E95-953E-4DAB186958F4_gui">
<omgdc:Bounds height="80.0" width="100.0" x="438.5" y="1005.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283" id="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283_gui">
<omgdc:Bounds height="80.0" width="100.0" x="401.5" y="1144.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF" id="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF_gui">
<omgdc:Bounds height="80.0" width="100.0" x="450.0" y="110.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" id="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="600.0" y="135.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-732095A1-B07A-4B08-A46B-277C12901DED" id="sid-732095A1-B07A-4B08-A46B-277C12901DED_gui">
<omgdc:Bounds height="80.0" width="100.0" x="713.0" y="115.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74" id="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74_gui">
<omgdc:Bounds height="80.0" width="100.0" x="235.0" y="211.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" id="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="265.0" y="330.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-B2E34105-96D5-4020-85D9-C569BA42D618" id="sid-B2E34105-96D5-4020-85D9-C569BA42D618_gui">
<omgdc:Bounds height="80.0" width="100.0" x="358.0" y="310.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283" id="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283_gui">
<omgdc:Bounds height="40.0" width="40.0" x="600.0" y="1219.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B" id="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B_gui">
<omgdc:Bounds height="28.0" width="28.0" x="394.0" y="436.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-4864A824-7467-421A-A654-83EE83F7681C" id="sid-4864A824-7467-421A-A654-83EE83F7681C_gui">
<omgdc:Bounds height="28.0" width="28.0" x="882.0" y="141.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B" id="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B_gui">
<omgdc:Bounds height="28.0" width="28.0" x="871.0" y="1226.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="sid-FAA04C3A-F55B-4947-850D-5A180D43BD61" id="sid-FAA04C3A-F55B-4947-850D-5A180D43BD61_gui">
<omgdi:waypoint x="716.0" y="677.0"/>
<omgdi:waypoint x="787.0" y="677.0"/>
<bpmndi:BPMNEdge id="sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D_gui" bpmnElement="sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D">
<omgdi:waypoint x="841" y="1240" />
<omgdi:waypoint x="921" y="1240" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-16EB4D98-7F77-4046-8CDD-E07C796542FE" id="sid-16EB4D98-7F77-4046-8CDD-E07C796542FE_gui">
<omgdi:waypoint x="305.0" y="350.0"/>
<omgdi:waypoint x="358.0" y="350.0"/>
<bpmndi:BPMNEdge id="sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB_gui" bpmnElement="sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB">
<omgdi:waypoint x="863" y="155" />
<omgdi:waypoint x="932" y="155" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E" id="sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E_gui">
<omgdi:waypoint x="837.0" y="1085.0"/>
<omgdi:waypoint x="837.5" y="1147.0"/>
<omgdi:waypoint x="620.5" y="1147.0"/>
<omgdi:waypoint x="620.0" y="1219.0"/>
<bpmndi:BPMNEdge id="sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D_gui" bpmnElement="sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D">
<omgdi:waypoint x="458" y="390" />
<omgdi:waypoint x="458" y="436" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27" id="sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27_gui">
<omgdi:waypoint x="277.0" y="545.0"/>
<omgdi:waypoint x="284.0" y="585.0"/>
<bpmndi:BPMNEdge id="sid-369B410B-EA82-4896-91FD-23FFF759494A_gui" bpmnElement="sid-369B410B-EA82-4896-91FD-23FFF759494A">
<omgdi:waypoint x="690" y="1239" />
<omgdi:waypoint x="741" y="1240" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-4A3A7E6E-F79B-4842-860C-407DB9227023" id="sid-4A3A7E6E-F79B-4842-860C-407DB9227023_gui">
<omgdi:waypoint x="291.0" y="785.0"/>
<omgdi:waypoint x="291.0" y="825.0"/>
<bpmndi:BPMNEdge id="sid-16EB4D98-7F77-4046-8CDD-E07C796542FE_gui" bpmnElement="sid-16EB4D98-7F77-4046-8CDD-E07C796542FE">
<omgdi:waypoint x="355" y="350" />
<omgdi:waypoint x="408" y="350" />
<bpmndi:BPMNLabel>
<omgdc:Bounds x="374" y="325" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416" id="sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416_gui">
<omgdi:waypoint x="640.0" y="155.0"/>
<omgdi:waypoint x="713.0" y="155.0"/>
<bpmndi:BPMNEdge id="sid-D7D86B12-A88C-4072-9852-6DD62643556A_gui" bpmnElement="sid-D7D86B12-A88C-4072-9852-6DD62643556A">
<omgdi:waypoint x="335" y="370" />
<omgdi:waypoint x="335.5" y="417.5" />
<omgdi:waypoint x="321.5" y="412" />
<omgdi:waypoint x="321" y="465" />
<bpmndi:BPMNLabel>
<omgdc:Bounds x="319" y="390" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-C132728C-7DAF-468C-A807-90A34847071E" id="sid-C132728C-7DAF-468C-A807-90A34847071E_gui">
<omgdi:waypoint x="291.0" y="665.0"/>
<omgdi:waypoint x="291.0" y="705.0"/>
<bpmndi:BPMNEdge id="sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E_gui" bpmnElement="sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E">
<omgdi:waypoint x="335" y="291" />
<omgdi:waypoint x="335" y="330" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-13838920-8EE4-45CB-8F01-29F13CA13819" id="sid-13838920-8EE4-45CB-8F01-29F13CA13819_gui">
<omgdi:waypoint x="538.0" y="677.0"/>
<omgdi:waypoint x="616.0" y="677.0"/>
<bpmndi:BPMNEdge id="sid-C7247231-5152-424E-A240-B07B76E8F5EC_gui" bpmnElement="sid-C7247231-5152-424E-A240-B07B76E8F5EC">
<omgdi:waypoint x="335" y="170" />
<omgdi:waypoint x="335" y="211" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-369B410B-EA82-4896-91FD-23FFF759494A" id="sid-369B410B-EA82-4896-91FD-23FFF759494A_gui">
<omgdi:waypoint x="640.0" y="1239.0"/>
<omgdi:waypoint x="691.0" y="1240.0"/>
<bpmndi:BPMNEdge id="sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416_gui" bpmnElement="sid-C06DF3AB-4CE5-4123-8033-8AACDCDF4416">
<omgdi:waypoint x="690" y="155" />
<omgdi:waypoint x="763" y="155" />
<bpmndi:BPMNLabel>
<omgdc:Bounds x="719" y="130" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2" id="sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2_gui">
<omgdi:waypoint x="550.0" y="152.0"/>
<omgdi:waypoint x="600.0" y="155.0"/>
<bpmndi:BPMNEdge id="sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE_gui" bpmnElement="sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE">
<omgdi:waypoint x="670" y="175" />
<omgdi:waypoint x="670" y="255" />
<bpmndi:BPMNLabel>
<omgdc:Bounds x="676" y="205" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-661F5F14-5B94-4977-9827-20654AE2719B" id="sid-661F5F14-5B94-4977-9827-20654AE2719B_gui">
<omgdi:waypoint x="837.0" y="965.0"/>
<omgdi:waypoint x="837.0" y="1005.0"/>
<bpmndi:BPMNEdge id="sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2_gui" bpmnElement="sid-7F5D9083-6201-43F9-BBEE-664E7310F4F2">
<omgdi:waypoint x="600" y="152" />
<omgdi:waypoint x="650" y="155" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D" id="sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D_gui">
<omgdi:waypoint x="501.0" y="1184.0"/>
<omgdi:waypoint x="544.0" y="1184.0"/>
<omgdi:waypoint x="544.0" y="1220.0"/>
<omgdi:waypoint x="600.0" y="1234.0"/>
<bpmndi:BPMNEdge id="sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C_gui" bpmnElement="sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C">
<omgdi:waypoint x="355" y="150" />
<omgdi:waypoint x="500" y="150" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-C7247231-5152-424E-A240-B07B76E8F5EC" id="sid-C7247231-5152-424E-A240-B07B76E8F5EC_gui">
<omgdi:waypoint x="285.0" y="170.0"/>
<omgdi:waypoint x="285.0" y="211.0"/>
<bpmndi:BPMNEdge id="sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E_gui" bpmnElement="sid-C0DC27C3-19F9-4D3D-9D04-8869DAEDEF1E">
<omgdi:waypoint x="887" y="1085" />
<omgdi:waypoint x="887.5" y="1147" />
<omgdi:waypoint x="670.5" y="1147" />
<omgdi:waypoint x="670" y="1219" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D" id="sid-E47AA9C3-9EB7-4B07-BB17-086388AACE0D_gui">
<omgdi:waypoint x="791.0" y="1240.0"/>
<omgdi:waypoint x="871.0" y="1240.0"/>
<bpmndi:BPMNEdge id="sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D_gui" bpmnElement="sid-A8886943-1369-43FB-BFC1-FF1FF974EB5D">
<omgdi:waypoint x="551" y="1184" />
<omgdi:waypoint x="594" y="1184" />
<omgdi:waypoint x="594" y="1220" />
<omgdi:waypoint x="650" y="1234" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE" id="sid-C609F3E0-2D09-469C-8750-3E3BA8C926BE_gui">
<omgdi:waypoint x="620.0" y="175.0"/>
<omgdi:waypoint x="620.0" y="255.0"/>
<bpmndi:BPMNEdge id="sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B_gui" bpmnElement="sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B">
<omgdi:waypoint x="538" y="1085" />
<omgdi:waypoint x="538.5" y="1114.5" />
<omgdi:waypoint x="501.5" y="1114.5" />
<omgdi:waypoint x="501" y="1144" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11" id="sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11_gui">
<omgdi:waypoint x="488.0" y="575.0"/>
<omgdi:waypoint x="488.0" y="637.0"/>
<bpmndi:BPMNEdge id="sid-42540C95-8E89-4B6F-B133-F677FA72C9FF_gui" bpmnElement="sid-42540C95-8E89-4B6F-B133-F677FA72C9FF">
<omgdi:waypoint x="392" y="1098" />
<omgdi:waypoint x="488" y="1063" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C" id="sid-7BFA5A55-E297-40FC-88A6-DF1DA809A12C_gui">
<omgdi:waypoint x="305.0" y="150.0"/>
<omgdi:waypoint x="450.0" y="150.0"/>
<bpmndi:BPMNEdge id="sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8_gui" bpmnElement="sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8">
<omgdi:waypoint x="342" y="1019" />
<omgdi:waypoint x="342" y="1076" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-54E118FA-9A24-434C-9E65-36F9D01FB43D" id="sid-54E118FA-9A24-434C-9E65-36F9D01FB43D_gui">
<omgdi:waypoint x="210.0" y="150.0"/>
<omgdi:waypoint x="265.0" y="150.0"/>
<bpmndi:BPMNEdge id="sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C_gui" bpmnElement="sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C">
<omgdi:waypoint x="491" y="924" />
<omgdi:waypoint x="442" y="924" />
<omgdi:waypoint x="442" y="979" />
<omgdi:waypoint x="392" y="979" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84" id="sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84_gui">
<omgdi:waypoint x="669.0" y="829.0"/>
<omgdi:waypoint x="669.0" y="884.0"/>
<bpmndi:BPMNEdge id="sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6_gui" bpmnElement="sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6">
<omgdi:waypoint x="669" y="924" />
<omgdi:waypoint x="591" y="924" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-84756278-D67A-4E65-AD96-24325F08E2D1" id="sid-84756278-D67A-4E65-AD96-24325F08E2D1_gui">
<omgdi:waypoint x="781.0" y="535.0"/>
<omgdi:waypoint x="718.0" y="535.0"/>
<bpmndi:BPMNEdge id="sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84_gui" bpmnElement="sid-BE9CBE97-0E09-4A37-BD98-65592D2F2E84">
<omgdi:waypoint x="719" y="829" />
<omgdi:waypoint x="719" y="884" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8" id="sid-1DD0519A-72AD-4FB1-91D6-4D18F2DA1FC8_gui">
<omgdi:waypoint x="292.0" y="1019.0"/>
<omgdi:waypoint x="292.0" y="1076.0"/>
<bpmndi:BPMNEdge id="sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4_gui" bpmnElement="sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4">
<omgdi:waypoint x="592" y="789" />
<omgdi:waypoint x="669" y="789" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4" id="sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4_gui">
<omgdi:waypoint x="341.0" y="865.0"/>
<omgdi:waypoint x="392.0" y="865.0"/>
<omgdi:waypoint x="392.0" y="789.0"/>
<omgdi:waypoint x="442.0" y="789.0"/>
<bpmndi:BPMNEdge id="sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4_gui" bpmnElement="sid-B45563D3-2FBE-406D-93E4-85A2DD04B1A4">
<omgdi:waypoint x="391" y="865" />
<omgdi:waypoint x="442" y="865" />
<omgdi:waypoint x="442" y="789" />
<omgdi:waypoint x="492" y="789" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB" id="sid-A0A2FCFF-E2BE-4FE6-A4D2-CCB3DCF68BFB_gui">
<omgdi:waypoint x="813.0" y="155.0"/>
<omgdi:waypoint x="882.0" y="155.0"/>
<bpmndi:BPMNEdge id="sid-661F5F14-5B94-4977-9827-20654AE2719B_gui" bpmnElement="sid-661F5F14-5B94-4977-9827-20654AE2719B">
<omgdi:waypoint x="887" y="965" />
<omgdi:waypoint x="887" y="1005" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9" id="sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9_gui">
<omgdi:waypoint x="837.0" y="826.0"/>
<omgdi:waypoint x="837.0" y="885.0"/>
<bpmndi:BPMNEdge id="sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9_gui" bpmnElement="sid-2A94D2F0-DF4B-45B6-A30D-FFB9BDF6E9D9">
<omgdi:waypoint x="887" y="826" />
<omgdi:waypoint x="887" y="885" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C" id="sid-8449C64C-CF1D-4601-ACAE-2CD61BE2D36C_gui">
<omgdi:waypoint x="441.0" y="924.0"/>
<omgdi:waypoint x="392.0" y="924.0"/>
<omgdi:waypoint x="392.0" y="979.0"/>
<omgdi:waypoint x="342.0" y="979.0"/>
<bpmndi:BPMNEdge id="sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51_gui" bpmnElement="sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51">
<omgdi:waypoint x="887" y="717" />
<omgdi:waypoint x="887" y="746" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-0204722F-5A92-4236-BBF1-C66123E14E22" id="sid-0204722F-5A92-4236-BBF1-C66123E14E22_gui">
<omgdi:waypoint x="670.0" y="295.0"/>
<omgdi:waypoint x="787.0" y="295.0"/>
<bpmndi:BPMNEdge id="sid-FAA04C3A-F55B-4947-850D-5A180D43BD61_gui" bpmnElement="sid-FAA04C3A-F55B-4947-850D-5A180D43BD61">
<omgdi:waypoint x="766" y="677" />
<omgdi:waypoint x="837" y="677" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E" id="sid-DC398932-1111-4CA2-AEB4-D460E0E06C6E_gui">
<omgdi:waypoint x="285.0" y="291.0"/>
<omgdi:waypoint x="285.0" y="330.0"/>
<bpmndi:BPMNEdge id="sid-13838920-8EE4-45CB-8F01-29F13CA13819_gui" bpmnElement="sid-13838920-8EE4-45CB-8F01-29F13CA13819">
<omgdi:waypoint x="588" y="677" />
<omgdi:waypoint x="666" y="677" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-85116AFA-E95A-4384-9695-361C1A6070C3" id="sid-85116AFA-E95A-4384-9695-361C1A6070C3_gui">
<omgdi:waypoint x="831.0" y="455.0"/>
<omgdi:waypoint x="831.0" y="495.0"/>
<bpmndi:BPMNEdge id="sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11_gui" bpmnElement="sid-9CA8DF1F-1622-4F6A-B9A6-761C60C29A11">
<omgdi:waypoint x="538" y="575" />
<omgdi:waypoint x="538" y="637" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-42540C95-8E89-4B6F-B133-F677FA72C9FF" id="sid-42540C95-8E89-4B6F-B133-F677FA72C9FF_gui">
<omgdi:waypoint x="342.0" y="1098.0"/>
<omgdi:waypoint x="438.0" y="1063.0"/>
<bpmndi:BPMNEdge id="sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC_gui" bpmnElement="sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC">
<omgdi:waypoint x="668" y="535" />
<omgdi:waypoint x="588" y="535" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC" id="sid-0C53B343-3753-4EED-A6FE-C1A7DFBF13BC_gui">
<omgdi:waypoint x="618.0" y="535.0"/>
<omgdi:waypoint x="538.0" y="535.0"/>
<bpmndi:BPMNEdge id="sid-84756278-D67A-4E65-AD96-24325F08E2D1_gui" bpmnElement="sid-84756278-D67A-4E65-AD96-24325F08E2D1">
<omgdi:waypoint x="831" y="535" />
<omgdi:waypoint x="768" y="535" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6" id="sid-C96EBBBD-7DDA-4875-89AC-0F030E53C2B6_gui">
<omgdi:waypoint x="619.0" y="924.0"/>
<omgdi:waypoint x="541.0" y="924.0"/>
<bpmndi:BPMNEdge id="sid-0204722F-5A92-4236-BBF1-C66123E14E22_gui" bpmnElement="sid-0204722F-5A92-4236-BBF1-C66123E14E22">
<omgdi:waypoint x="720" y="295" />
<omgdi:waypoint x="837" y="295" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-D7D86B12-A88C-4072-9852-6DD62643556A" id="sid-D7D86B12-A88C-4072-9852-6DD62643556A_gui">
<omgdi:waypoint x="285.0" y="370.0"/>
<omgdi:waypoint x="285.5" y="417.5"/>
<omgdi:waypoint x="271.5" y="412.0"/>
<omgdi:waypoint x="271.0" y="465.0"/>
<bpmndi:BPMNEdge id="sid-4A3A7E6E-F79B-4842-860C-407DB9227023_gui" bpmnElement="sid-4A3A7E6E-F79B-4842-860C-407DB9227023">
<omgdi:waypoint x="341" y="785" />
<omgdi:waypoint x="341" y="825" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-699ED598-1AB9-4A3B-9315-9C89578FB017" id="sid-699ED598-1AB9-4A3B-9315-9C89578FB017_gui">
<omgdi:waypoint x="835.0" y="335.0"/>
<omgdi:waypoint x="833.0" y="375.0"/>
<bpmndi:BPMNEdge id="sid-C132728C-7DAF-468C-A807-90A34847071E_gui" bpmnElement="sid-C132728C-7DAF-468C-A807-90A34847071E">
<omgdi:waypoint x="341" y="665" />
<omgdi:waypoint x="341" y="705" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4" id="sid-0E826E42-8FBC-4532-96EA-C82E7340CBA4_gui">
<omgdi:waypoint x="542.0" y="789.0"/>
<omgdi:waypoint x="619.0" y="789.0"/>
<bpmndi:BPMNEdge id="sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27_gui" bpmnElement="sid-AE7CFA43-AC83-4F28-BCE3-AD7BE9CE6F27">
<omgdi:waypoint x="327" y="545" />
<omgdi:waypoint x="334" y="585" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51" id="sid-A19043EA-D140-48AE-99A1-4B1EA3DE0E51_gui">
<omgdi:waypoint x="837.0" y="717.0"/>
<omgdi:waypoint x="837.0" y="746.0"/>
<bpmndi:BPMNEdge id="sid-85116AFA-E95A-4384-9695-361C1A6070C3_gui" bpmnElement="sid-85116AFA-E95A-4384-9695-361C1A6070C3">
<omgdi:waypoint x="881" y="455" />
<omgdi:waypoint x="881" y="495" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D" id="sid-8E17C1AF-45C2-48C7-A794-1259E2ECA43D_gui">
<omgdi:waypoint x="408.0" y="390.0"/>
<omgdi:waypoint x="408.0" y="436.0"/>
<bpmndi:BPMNEdge id="sid-699ED598-1AB9-4A3B-9315-9C89578FB017_gui" bpmnElement="sid-699ED598-1AB9-4A3B-9315-9C89578FB017">
<omgdi:waypoint x="885" y="335" />
<omgdi:waypoint x="883" y="375" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B" id="sid-108A05A6-D07C-4DA9-AAC3-8075A721B44B_gui">
<omgdi:waypoint x="488.0" y="1085.0"/>
<omgdi:waypoint x="488.5" y="1114.5"/>
<omgdi:waypoint x="451.5" y="1114.5"/>
<omgdi:waypoint x="451.0" y="1144.0"/>
<bpmndi:BPMNEdge id="sid-54E118FA-9A24-434C-9E65-36F9D01FB43D_gui" bpmnElement="sid-54E118FA-9A24-434C-9E65-36F9D01FB43D">
<omgdi:waypoint x="260" y="150" />
<omgdi:waypoint x="315" y="150" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF_gui" bpmnElement="sid-9CAB06E6-EDCF-4193-869A-FE8328E8CBFF">
<omgdc:Bounds x="230" y="135" width="30" height="30" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8_gui" bpmnElement="sid-F4CFA154-9281-4579-B117-0859A2BFF7E8">
<omgdc:Bounds x="315" y="130" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E489DED4-8C38-4841-80BC-E514353C1B8C_gui" bpmnElement="sid-E489DED4-8C38-4841-80BC-E514353C1B8C">
<omgdc:Bounds x="620" y="255" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-B88338F7-5084-4532-9ABB-7387B1E5A664_gui" bpmnElement="sid-B88338F7-5084-4532-9ABB-7387B1E5A664">
<omgdc:Bounds x="838" y="255" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-35745597-A6C0-424B-884C-C5C23B60C942_gui" bpmnElement="sid-35745597-A6C0-424B-884C-C5C23B60C942">
<omgdc:Bounds x="832" y="375" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114_gui" bpmnElement="sid-0BC1E7F7-CBDA-4591-95B9-320FCBEF6114">
<omgdc:Bounds x="832" y="495" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570_gui" bpmnElement="sid-45841FFD-3D92-4A18-9CE3-84DC5282F570">
<omgdc:Bounds x="292" y="585" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-A8E18F57-FC41-401D-A397-9264C3E48293_gui" bpmnElement="sid-A8E18F57-FC41-401D-A397-9264C3E48293">
<omgdc:Bounds x="292" y="705" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD_gui" bpmnElement="sid-E98E44A0-A273-4350-BA75-B37F2FCBA1DD">
<omgdc:Bounds x="292" y="825" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08_gui" bpmnElement="sid-29C1DD4B-9E3E-4686-892D-D47927F6DA08">
<omgdc:Bounds x="272" y="465" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-107A993F-6302-4391-9BE2-068C9C7B693B_gui" bpmnElement="sid-107A993F-6302-4391-9BE2-068C9C7B693B">
<omgdc:Bounds x="742" y="1200" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C_gui" bpmnElement="sid-71AA325A-4D02-46B4-8DC9-00C90BC5337C">
<omgdc:Bounds x="669" y="495" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-54BB293D-91B6-41B5-A5C4-423300D74D14_gui" bpmnElement="sid-54BB293D-91B6-41B5-A5C4-423300D74D14">
<omgdc:Bounds x="489" y="495" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0_gui" bpmnElement="sid-D8777102-7A64-42E6-A988-D0AE3049ABB0">
<omgdc:Bounds x="489" y="637" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E6A08072-E35C-4545-9C66-B74B615F34C2_gui" bpmnElement="sid-E6A08072-E35C-4545-9C66-B74B615F34C2">
<omgdc:Bounds x="667" y="637" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-BEC02819-27FE-4484-8FDA-08450F4DE618_gui" bpmnElement="sid-BEC02819-27FE-4484-8FDA-08450F4DE618">
<omgdc:Bounds x="838" y="637" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0_gui" bpmnElement="sid-6576AA43-43DF-4086-98C8-FD2B22F20EB0">
<omgdc:Bounds x="838" y="746" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-08397892-678C-4706-A05F-8F6DAE9B5423_gui" bpmnElement="sid-08397892-678C-4706-A05F-8F6DAE9B5423">
<omgdc:Bounds x="838" y="885" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-3500C16F-8037-4987-9022-8E30AB6B0590_gui" bpmnElement="sid-3500C16F-8037-4987-9022-8E30AB6B0590">
<omgdc:Bounds x="838" y="1005" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-A473B421-0981-49D8-BD5A-66832BD518EC_gui" bpmnElement="sid-A473B421-0981-49D8-BD5A-66832BD518EC">
<omgdc:Bounds x="493" y="749" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A_gui" bpmnElement="sid-F18EA1E5-B692-484C-AB84-2F422BF7868A">
<omgdc:Bounds x="670" y="749" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-D67A997E-C7CF-4581-8749-4F931D8737B5_gui" bpmnElement="sid-D67A997E-C7CF-4581-8749-4F931D8737B5">
<omgdc:Bounds x="670" y="884" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-399AE395-D46F-4A30-B875-E904970AF141_gui" bpmnElement="sid-399AE395-D46F-4A30-B875-E904970AF141">
<omgdc:Bounds x="492" y="884" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA_gui" bpmnElement="sid-738EA50B-3EB5-464B-96B8-6CA5FC30ECBA">
<omgdc:Bounds x="293" y="939" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474_gui" bpmnElement="sid-5598F421-4AC5-4C12-9239-EFAC51C5F474">
<omgdc:Bounds x="293" y="1076" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-CF5677F8-747F-4E95-953E-4DAB186958F4_gui" bpmnElement="sid-CF5677F8-747F-4E95-953E-4DAB186958F4">
<omgdc:Bounds x="489" y="1005" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283_gui" bpmnElement="sid-A73FF591-2A52-42DF-97DB-6CEEF8991283">
<omgdc:Bounds x="452" y="1144" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF_gui" bpmnElement="sid-69DF31CE-D587-4BA8-8BE6-72786108D8DF">
<omgdc:Bounds x="500" y="110" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3_gui" bpmnElement="sid-38B84B23-6757-4357-9AF5-A62A5C8AC1D3" isMarkerVisible="true">
<omgdc:Bounds x="650" y="135" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-732095A1-B07A-4B08-A46B-277C12901DED_gui" bpmnElement="sid-732095A1-B07A-4B08-A46B-277C12901DED">
<omgdc:Bounds x="763" y="115" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74_gui" bpmnElement="sid-23391B60-C6A7-4C9E-9F95-43EA84ECFB74">
<omgdc:Bounds x="285" y="211" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247_gui" bpmnElement="sid-9A40D0CD-3BD0-4A0D-A6B0-60FD60265247" isMarkerVisible="true">
<omgdc:Bounds x="315" y="330" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-B2E34105-96D5-4020-85D9-C569BA42D618_gui" bpmnElement="sid-B2E34105-96D5-4020-85D9-C569BA42D618">
<omgdc:Bounds x="408" y="310" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283_gui" bpmnElement="sid-3D1455CF-6B1E-4EB1-81B2-D738110BB283">
<omgdc:Bounds x="650" y="1219" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B_gui" bpmnElement="sid-75EE4F61-E8E2-441B-8818-30E3BACF140B">
<omgdc:Bounds x="444" y="436" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-4864A824-7467-421A-A654-83EE83F7681C_gui" bpmnElement="sid-4864A824-7467-421A-A654-83EE83F7681C">
<omgdc:Bounds x="932" y="141" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B_gui" bpmnElement="sid-6938255D-3C1A-4B94-9E83-4D467E0DDB4B">
<omgdc:Bounds x="921" y="1226" width="28" height="28" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-e768d5da-695e-4e7f-9056-00d2c55ebc7a" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:signavio="http://www.signavio.com" id="sid-e768d5da-695e-4e7f-9056-00d2c55ebc7a" targetNamespace="http://www.signavio.com/bpmn20" exporter="Camunda Modeler" exporterVersion="4.11.1" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<collaboration id="sid-0f17acc3-6084-4563-9deb-bdcad51f2d07">
<participant id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" name="Parallel One Path Ends" processRef="sid-33b2dda8-ca46-47ca-9f08-43de73abde9e">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
</participant>
</collaboration>
<process id="sid-33b2dda8-ca46-47ca-9f08-43de73abde9e" isClosed="false" isExecutable="false" name="Parallel One Path Ends" processType="None">
<process id="sid-33b2dda8-ca46-47ca-9f08-43de73abde9e" name="Parallel One Path Ends" processType="None" isClosed="false" isExecutable="false">
<laneSet id="sid-a3c82d8b-0ff3-4d32-822a-c4867d4b03ec">
<lane id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" name="Tester">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue=""/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="" />
</extensionElements>
<flowNodeRef>sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE</flowNodeRef>
<flowNodeRef>sid-349F8C0C-45EA-489C-84DD-1D944F48D778</flowNodeRef>
@ -19,174 +19,178 @@
<flowNodeRef>sid-CA089240-802A-4C32-9130-FB1A33DDCCC3</flowNodeRef>
<flowNodeRef>sid-E2054FDD-0C20-4939-938D-2169B317FEE7</flowNodeRef>
<flowNodeRef>sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5</flowNodeRef>
<flowNodeRef>sid-F3A979E3-F586-4807-8223-1FAB5A5647B0</flowNodeRef>
<flowNodeRef>sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB</flowNodeRef>
<flowNodeRef>sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84</flowNodeRef>
<flowNodeRef>sid-40294A27-262C-4805-94A0-36AC9DFEA55A</flowNodeRef>
<flowNodeRef>sid-F3A979E3-F586-4807-8223-1FAB5A5647B0</flowNodeRef>
</lane>
</laneSet>
<startEvent id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<outgoing>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</outgoing>
</startEvent>
<parallelGateway gatewayDirection="Diverging" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="">
<parallelGateway id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</incoming>
<outgoing>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</outgoing>
<outgoing>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</outgoing>
</parallelGateway>
<task completionQuantity="1" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" isForCompensation="false" name="Parallel Task" startQuantity="1">
<task id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" name="Parallel Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</incoming>
<outgoing>sid-E3493781-6466-4AED-BAD2-63D115E14820</outgoing>
</task>
<task completionQuantity="1" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" isForCompensation="false" name="Choice 1" startQuantity="1">
<task id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" name="Choice 1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</incoming>
<outgoing>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</outgoing>
</task>
<exclusiveGateway gatewayDirection="Diverging" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="">
<exclusiveGateway id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</incoming>
<outgoing>sid-9C753C3D-F964-45B0-AF57-234F910529EF</outgoing>
<outgoing>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</outgoing>
</exclusiveGateway>
<task completionQuantity="1" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" isForCompensation="false" name="Yes Task" startQuantity="1">
<task id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" name="Yes Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-9C753C3D-F964-45B0-AF57-234F910529EF</incoming>
<outgoing>sid-A6DA25CE-636A-46B7-8005-759577956F09</outgoing>
</task>
<task completionQuantity="1" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" isForCompensation="false" name="Done" startQuantity="1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
</extensionElements>
<incoming>sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A</incoming>
<outgoing>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</outgoing>
</task>
<endEvent id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</incoming>
</endEvent>
<endEvent id="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</incoming>
</endEvent>
<inclusiveGateway gatewayDirection="Converging" id="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" name="">
<inclusiveGateway id="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" name="" gatewayDirection="Converging" default="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-A6DA25CE-636A-46B7-8005-759577956F09</incoming>
<incoming>sid-E3493781-6466-4AED-BAD2-63D115E14820</incoming>
<outgoing>sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A</outgoing>
</inclusiveGateway>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778"/>
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86"/>
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3"/>
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7"/>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5"/>
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-40294A27-262C-4805-94A0-36AC9DFEA55A"/>
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB"/>
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84"/>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-40294A27-262C-4805-94A0-36AC9DFEA55A"/>
<sequenceFlow id="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A" name="" sourceRef="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0"/>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" />
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" />
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" />
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" />
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<conditionExpression xsi:type="tFormalExpression">choice == 'Yes'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" />
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" />
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84">
<conditionExpression xsi:type="tFormalExpression">choice == 'No'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" />
<sequenceFlow id="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A" name="" sourceRef="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" />
<task id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" name="Done">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A</incoming>
<outgoing>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</outgoing>
</task>
</process>
<bpmndi:BPMNDiagram id="sid-45a74cc8-83cd-41da-8041-dd8449ea4c0f">
<bpmndi:BPMNPlane bpmnElement="sid-0f17acc3-6084-4563-9deb-bdcad51f2d07" id="sid-8979dc6d-9b90-4b0d-8bab-1999dec21a52">
<bpmndi:BPMNShape bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="776.0" x="120.0" y="90.0"/>
<bpmndi:BPMNPlane id="sid-8979dc6d-9b90-4b0d-8bab-1999dec21a52" bpmnElement="sid-0f17acc3-6084-4563-9deb-bdcad51f2d07">
<bpmndi:BPMNShape id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" isHorizontal="true">
<omgdc:Bounds x="120" y="90" width="776" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="746.0" x="150.0" y="90.0"/>
<bpmndi:BPMNShape id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" isHorizontal="true">
<omgdc:Bounds x="150" y="90" width="746" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui">
<omgdc:Bounds height="30.0" width="30.0" x="190.0" y="122.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui">
<omgdc:Bounds height="40.0" width="40.0" x="315.0" y="117.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui">
<omgdc:Bounds height="80.0" width="100.0" x="469.0" y="97.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="214.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="261.0" y="339.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui">
<omgdc:Bounds height="80.0" width="100.0" x="371.0" y="319.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui">
<omgdc:Bounds height="80.0" width="100.0" x="678.0" y="328.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui">
<omgdc:Bounds height="28.0" width="28.0" x="714.0" y="448.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84" id="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84_gui">
<omgdc:Bounds height="28.0" width="28.0" x="267.0" y="448.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-40294A27-262C-4805-94A0-36AC9DFEA55A" id="sid-40294A27-262C-4805-94A0-36AC9DFEA55A_gui">
<omgdc:Bounds height="40.0" width="40.0" x="600.0" y="339.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF" id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui">
<omgdi:waypoint x="301.0" y="359.0"/>
<omgdi:waypoint x="371.0" y="359.0"/>
<bpmndi:BPMNEdge id="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A_gui" bpmnElement="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A">
<omgdi:waypoint x="640" y="360" />
<omgdi:waypoint x="678" y="364" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui">
<omgdi:waypoint x="355.0" y="137.0"/>
<omgdi:waypoint x="469.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui" bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820">
<omgdi:waypoint x="569" y="137" />
<omgdi:waypoint x="620.5" y="137" />
<omgdi:waypoint x="620" y="339" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui">
<omgdi:waypoint x="281.0" y="294.0"/>
<omgdi:waypoint x="281.0" y="339.0"/>
<bpmndi:BPMNEdge id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui" bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42">
<omgdi:waypoint x="281" y="379" />
<omgdi:waypoint x="281" y="448" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A" id="sid-8B2BFD35-F1B2-4C77-AC51-F15960D8791A_gui">
<omgdi:waypoint x="640.0" y="360.0"/>
<omgdi:waypoint x="678.0" y="364.0"/>
<bpmndi:BPMNEdge id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui" bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF">
<omgdi:waypoint x="728" y="408" />
<omgdi:waypoint x="728" y="448" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui">
<omgdi:waypoint x="728.0" y="408.0"/>
<omgdi:waypoint x="728.0" y="448.0"/>
<bpmndi:BPMNEdge id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui" bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09">
<omgdi:waypoint x="471" y="359" />
<omgdi:waypoint x="600" y="359" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui">
<omgdi:waypoint x="220.0" y="137.0"/>
<omgdi:waypoint x="315.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui" bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF">
<omgdi:waypoint x="301" y="359" />
<omgdi:waypoint x="371" y="359" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09" id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui">
<omgdi:waypoint x="471.0" y="359.0"/>
<omgdi:waypoint x="600.0" y="359.0"/>
<bpmndi:BPMNEdge id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui" bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140">
<omgdi:waypoint x="281" y="294" />
<omgdi:waypoint x="281" y="339" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui">
<omgdi:waypoint x="335.0" y="157.0"/>
<omgdi:waypoint x="335.5" y="185.5"/>
<omgdi:waypoint x="281.0" y="185.5"/>
<omgdi:waypoint x="281.0" y="214.0"/>
<bpmndi:BPMNEdge id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui" bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C">
<omgdi:waypoint x="335" y="157" />
<omgdi:waypoint x="335.5" y="185.5" />
<omgdi:waypoint x="281" y="185.5" />
<omgdi:waypoint x="281" y="214" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui">
<omgdi:waypoint x="281.0" y="379.0"/>
<omgdi:waypoint x="281.0" y="448.0"/>
<bpmndi:BPMNEdge id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui" bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94">
<omgdi:waypoint x="355" y="137" />
<omgdi:waypoint x="469" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820" id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui">
<omgdi:waypoint x="569.0" y="137.0"/>
<omgdi:waypoint x="620.5" y="137.0"/>
<omgdi:waypoint x="620.0" y="339.0"/>
<bpmndi:BPMNEdge id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui" bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612">
<omgdi:waypoint x="220" y="137" />
<omgdi:waypoint x="315" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui" bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE">
<omgdc:Bounds x="190" y="122" width="30" height="30" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui" bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778">
<omgdc:Bounds x="315" y="117" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui" bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86">
<omgdc:Bounds x="469" y="97" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui" bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3">
<omgdc:Bounds x="231" y="214" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" isMarkerVisible="true">
<omgdc:Bounds x="261" y="339" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui" bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<omgdc:Bounds x="371" y="319" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui" bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0">
<omgdc:Bounds x="678" y="328" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui" bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB">
<omgdc:Bounds x="714" y="448" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84_gui" bpmnElement="sid-8FFE9D52-DC83-46A8-BB36-98BA94E5FE84">
<omgdc:Bounds x="267" y="448" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-40294A27-262C-4805-94A0-36AC9DFEA55A_gui" bpmnElement="sid-40294A27-262C-4805-94A0-36AC9DFEA55A">
<omgdc:Bounds x="600" y="339" width="40" height="40" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-30c405f0-d9e2-4a64-bee9-991f9cdd29ca" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:signavio="http://www.signavio.com" id="sid-30c405f0-d9e2-4a64-bee9-991f9cdd29ca" targetNamespace="http://www.signavio.com/bpmn20" exporter="Camunda Modeler" exporterVersion="4.11.1" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<collaboration id="sid-5a474cce-f38e-40ef-8177-46451f1c0008">
<participant id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" name="Parallel Then Exclusive No Inclusive" processRef="sid-900d26c9-beab-47a4-8092-4284bfb39927">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
</participant>
</collaboration>
<process id="sid-900d26c9-beab-47a4-8092-4284bfb39927" isClosed="false" isExecutable="false" name="Parallel Then Exclusive No Inclusive" processType="None">
<process id="sid-900d26c9-beab-47a4-8092-4284bfb39927" name="Parallel Then Exclusive No Inclusive" processType="None" isClosed="false" isExecutable="false">
<laneSet id="sid-6ee2dc30-d14c-4d0c-9e3c-dab157e066ae">
<lane id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" name="Tester">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue=""/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="" />
</extensionElements>
<flowNodeRef>sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE</flowNodeRef>
<flowNodeRef>sid-349F8C0C-45EA-489C-84DD-1D944F48D778</flowNodeRef>
@ -28,192 +28,196 @@
</laneSet>
<startEvent id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<outgoing>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</outgoing>
</startEvent>
<parallelGateway gatewayDirection="Diverging" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="">
<parallelGateway id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</incoming>
<outgoing>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</outgoing>
<outgoing>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</outgoing>
</parallelGateway>
<task completionQuantity="1" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" isForCompensation="false" name="Parallel Task" startQuantity="1">
<task id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" name="Parallel Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</incoming>
<outgoing>sid-E3493781-6466-4AED-BAD2-63D115E14820</outgoing>
</task>
<task completionQuantity="1" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" isForCompensation="false" name="Choice 1" startQuantity="1">
<task id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" name="Choice 1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</incoming>
<outgoing>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</outgoing>
</task>
<exclusiveGateway gatewayDirection="Diverging" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="">
<exclusiveGateway id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</incoming>
<outgoing>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</outgoing>
<outgoing>sid-9C753C3D-F964-45B0-AF57-234F910529EF</outgoing>
</exclusiveGateway>
<task completionQuantity="1" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" isForCompensation="false" name="Yes Task" startQuantity="1">
<task id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" name="Yes Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-9C753C3D-F964-45B0-AF57-234F910529EF</incoming>
<outgoing>sid-A6DA25CE-636A-46B7-8005-759577956F09</outgoing>
</task>
<task completionQuantity="1" id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" isForCompensation="false" name="No Task" startQuantity="1">
<task id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" name="No Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</incoming>
<outgoing>sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE</outgoing>
</task>
<task completionQuantity="1" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" isForCompensation="false" name="Done" startQuantity="1">
<task id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" name="Done">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-0895E09C-077C-4D12-8C11-31F28CBC7740</incoming>
<outgoing>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</outgoing>
</task>
<endEvent id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</incoming>
</endEvent>
<exclusiveGateway gatewayDirection="Converging" id="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" name="">
<exclusiveGateway id="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" name="" gatewayDirection="Converging" default="sid-3B450653-1657-4247-B96E-6E3E6262BB97">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE</incoming>
<incoming>sid-A6DA25CE-636A-46B7-8005-759577956F09</incoming>
<outgoing>sid-3B450653-1657-4247-B96E-6E3E6262BB97</outgoing>
</exclusiveGateway>
<parallelGateway gatewayDirection="Converging" id="sid-D856C519-562B-46A3-B32C-9587F394BD0F" name="">
<parallelGateway id="sid-D856C519-562B-46A3-B32C-9587F394BD0F" name="" gatewayDirection="Converging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-E3493781-6466-4AED-BAD2-63D115E14820</incoming>
<incoming>sid-3B450653-1657-4247-B96E-6E3E6262BB97</incoming>
<outgoing>sid-0895E09C-077C-4D12-8C11-31F28CBC7740</outgoing>
</parallelGateway>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778"/>
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86"/>
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3"/>
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7"/>
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3"/>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5"/>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-D856C519-562B-46A3-B32C-9587F394BD0F"/>
<sequenceFlow id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" name="" sourceRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" targetRef="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2"/>
<sequenceFlow id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" name="" sourceRef="sid-D856C519-562B-46A3-B32C-9587F394BD0F" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0"/>
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB"/>
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2"/>
<sequenceFlow id="sid-3B450653-1657-4247-B96E-6E3E6262BB97" name="" sourceRef="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" targetRef="sid-D856C519-562B-46A3-B32C-9587F394BD0F"/>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" />
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" />
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" />
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" />
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3">
<conditionExpression xsi:type="tFormalExpression">choice == 'No'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<conditionExpression xsi:type="tFormalExpression">choice == 'Yes'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-D856C519-562B-46A3-B32C-9587F394BD0F" />
<sequenceFlow id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" name="" sourceRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" targetRef="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" />
<sequenceFlow id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" name="" sourceRef="sid-D856C519-562B-46A3-B32C-9587F394BD0F" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" />
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" />
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" />
<sequenceFlow id="sid-3B450653-1657-4247-B96E-6E3E6262BB97" name="" sourceRef="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" targetRef="sid-D856C519-562B-46A3-B32C-9587F394BD0F" />
</process>
<bpmndi:BPMNDiagram id="sid-8e452264-f261-4e0f-bb04-953b98a69997">
<bpmndi:BPMNPlane bpmnElement="sid-5a474cce-f38e-40ef-8177-46451f1c0008" id="sid-2831b2c4-9485-4174-9ccc-4942ec15b903">
<bpmndi:BPMNShape bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="776.0" x="120.0" y="90.0"/>
<bpmndi:BPMNPlane id="sid-2831b2c4-9485-4174-9ccc-4942ec15b903" bpmnElement="sid-5a474cce-f38e-40ef-8177-46451f1c0008">
<bpmndi:BPMNShape id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" isHorizontal="true">
<omgdc:Bounds x="120" y="90" width="776" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="746.0" x="150.0" y="90.0"/>
<bpmndi:BPMNShape id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" isHorizontal="true">
<omgdc:Bounds x="150" y="90" width="746" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui">
<omgdc:Bounds height="30.0" width="30.0" x="190.0" y="122.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui">
<omgdc:Bounds height="40.0" width="40.0" x="315.0" y="117.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui">
<omgdc:Bounds height="80.0" width="100.0" x="469.0" y="97.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="214.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="261.0" y="339.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui">
<omgdc:Bounds height="80.0" width="100.0" x="371.0" y="319.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="437.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui">
<omgdc:Bounds height="80.0" width="100.0" x="678.0" y="328.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui">
<omgdc:Bounds height="28.0" width="28.0" x="714.0" y="448.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" id="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="503.0" y="390.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-D856C519-562B-46A3-B32C-9587F394BD0F" id="sid-D856C519-562B-46A3-B32C-9587F394BD0F_gui">
<omgdc:Bounds height="40.0" width="40.0" x="600.0" y="348.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui">
<omgdi:waypoint x="355.0" y="137.0"/>
<omgdi:waypoint x="469.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-3B450653-1657-4247-B96E-6E3E6262BB97_gui" bpmnElement="sid-3B450653-1657-4247-B96E-6E3E6262BB97">
<omgdi:waypoint x="543" y="410" />
<omgdi:waypoint x="568.5" y="410.5" />
<omgdi:waypoint x="568.5" y="368" />
<omgdi:waypoint x="600" y="368" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE_gui">
<omgdi:waypoint x="331.0" y="477.0"/>
<omgdi:waypoint x="523.5" y="477.0"/>
<omgdi:waypoint x="523.0" y="430.0"/>
<bpmndi:BPMNEdge id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui" bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09">
<omgdi:waypoint x="471" y="359" />
<omgdi:waypoint x="523.5" y="359" />
<omgdi:waypoint x="523" y="390" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui">
<omgdi:waypoint x="728.0" y="408.0"/>
<omgdi:waypoint x="728.0" y="448.0"/>
<bpmndi:BPMNEdge id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui" bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF">
<omgdi:waypoint x="728" y="408" />
<omgdi:waypoint x="728" y="448" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui">
<omgdi:waypoint x="220.0" y="137.0"/>
<omgdi:waypoint x="315.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740_gui" bpmnElement="sid-0895E09C-077C-4D12-8C11-31F28CBC7740">
<omgdi:waypoint x="640" y="368" />
<omgdi:waypoint x="678" y="368" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui">
<omgdi:waypoint x="335.0" y="157.0"/>
<omgdi:waypoint x="335.5" y="185.5"/>
<omgdi:waypoint x="281.0" y="185.5"/>
<omgdi:waypoint x="281.0" y="214.0"/>
<bpmndi:BPMNEdge id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE_gui" bpmnElement="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE">
<omgdi:waypoint x="331" y="477" />
<omgdi:waypoint x="523.5" y="477" />
<omgdi:waypoint x="523" y="430" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820" id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui">
<omgdi:waypoint x="569.0" y="137.0"/>
<omgdi:waypoint x="630.0" y="137.0"/>
<omgdi:waypoint x="620.0" y="348.0"/>
<bpmndi:BPMNEdge id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui" bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820">
<omgdi:waypoint x="569" y="137" />
<omgdi:waypoint x="630" y="137" />
<omgdi:waypoint x="620" y="348" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF" id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui">
<omgdi:waypoint x="301.0" y="359.0"/>
<omgdi:waypoint x="371.0" y="359.0"/>
<bpmndi:BPMNEdge id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui" bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF">
<omgdi:waypoint x="301" y="359" />
<omgdi:waypoint x="371" y="359" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui">
<omgdi:waypoint x="281.0" y="294.0"/>
<omgdi:waypoint x="281.0" y="339.0"/>
<bpmndi:BPMNEdge id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui" bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42">
<omgdi:waypoint x="281" y="379" />
<omgdi:waypoint x="281" y="437" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09" id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui">
<omgdi:waypoint x="471.0" y="359.0"/>
<omgdi:waypoint x="523.5" y="359.0"/>
<omgdi:waypoint x="523.0" y="390.0"/>
<bpmndi:BPMNEdge id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui" bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140">
<omgdi:waypoint x="281" y="294" />
<omgdi:waypoint x="281" y="339" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-3B450653-1657-4247-B96E-6E3E6262BB97" id="sid-3B450653-1657-4247-B96E-6E3E6262BB97_gui">
<omgdi:waypoint x="543.0" y="410.0"/>
<omgdi:waypoint x="568.5" y="410.5"/>
<omgdi:waypoint x="568.5" y="368.0"/>
<omgdi:waypoint x="600.0" y="368.0"/>
<bpmndi:BPMNEdge id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui" bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C">
<omgdi:waypoint x="335" y="157" />
<omgdi:waypoint x="335.5" y="185.5" />
<omgdi:waypoint x="281" y="185.5" />
<omgdi:waypoint x="281" y="214" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui">
<omgdi:waypoint x="281.0" y="379.0"/>
<omgdi:waypoint x="281.0" y="437.0"/>
<bpmndi:BPMNEdge id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui" bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94">
<omgdi:waypoint x="355" y="137" />
<omgdi:waypoint x="469" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740_gui">
<omgdi:waypoint x="640.0" y="368.0"/>
<omgdi:waypoint x="678.0" y="368.0"/>
<bpmndi:BPMNEdge id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui" bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612">
<omgdi:waypoint x="220" y="137" />
<omgdi:waypoint x="315" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui" bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE">
<omgdc:Bounds x="190" y="122" width="30" height="30" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui" bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778">
<omgdc:Bounds x="315" y="117" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui" bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86">
<omgdc:Bounds x="469" y="97" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui" bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3">
<omgdc:Bounds x="231" y="214" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" isMarkerVisible="true">
<omgdc:Bounds x="261" y="339" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui" bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<omgdc:Bounds x="371" y="319" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3_gui" bpmnElement="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3">
<omgdc:Bounds x="231" y="437" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui" bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0">
<omgdc:Bounds x="678" y="328" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui" bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB">
<omgdc:Bounds x="714" y="448" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2_gui" bpmnElement="sid-040FCBAD-0550-4251-B799-74FCDB0DC3E2" isMarkerVisible="true">
<omgdc:Bounds x="503" y="390" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-D856C519-562B-46A3-B32C-9587F394BD0F_gui" bpmnElement="sid-D856C519-562B-46A3-B32C-9587F394BD0F">
<omgdc:Bounds x="600" y="348" width="40" height="40" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-2ed227c3-91bf-49c2-983f-0712464fa6d4" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:signavio="http://www.signavio.com" id="sid-2ed227c3-91bf-49c2-983f-0712464fa6d4" targetNamespace="http://www.signavio.com/bpmn20" exporter="Camunda Modeler" exporterVersion="4.11.1" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<collaboration id="sid-6b109fe2-498a-4dd3-a372-4ad57a3e03b8">
<participant id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" name="Parallel Then Exclusive" processRef="sid-bb9ea2d5-58b6-43c7-8e77-6e28f71106f0">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
</participant>
</collaboration>
<process id="sid-bb9ea2d5-58b6-43c7-8e77-6e28f71106f0" isClosed="false" isExecutable="false" name="Parallel Then Exclusive" processType="None">
<process id="sid-bb9ea2d5-58b6-43c7-8e77-6e28f71106f0" name="Parallel Then Exclusive" processType="None" isClosed="false" isExecutable="false">
<laneSet id="sid-97ba594c-117d-496d-bcbf-0287c7af58d8">
<lane id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" name="Tester">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue=""/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="" />
</extensionElements>
<flowNodeRef>sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE</flowNodeRef>
<flowNodeRef>sid-349F8C0C-45EA-489C-84DD-1D944F48D778</flowNodeRef>
@ -27,176 +27,180 @@
</laneSet>
<startEvent id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<outgoing>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</outgoing>
</startEvent>
<parallelGateway gatewayDirection="Diverging" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="">
<parallelGateway id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</incoming>
<outgoing>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</outgoing>
<outgoing>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</outgoing>
</parallelGateway>
<task completionQuantity="1" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" isForCompensation="false" name="Parallel Task" startQuantity="1">
<task id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" name="Parallel Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</incoming>
<outgoing>sid-E3493781-6466-4AED-BAD2-63D115E14820</outgoing>
</task>
<task completionQuantity="1" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" isForCompensation="false" name="Choice 1" startQuantity="1">
<task id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" name="Choice 1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</incoming>
<outgoing>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</outgoing>
</task>
<exclusiveGateway gatewayDirection="Diverging" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="">
<exclusiveGateway id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</incoming>
<outgoing>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</outgoing>
<outgoing>sid-9C753C3D-F964-45B0-AF57-234F910529EF</outgoing>
</exclusiveGateway>
<task completionQuantity="1" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" isForCompensation="false" name="Yes Task" startQuantity="1">
<task id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" name="Yes Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-9C753C3D-F964-45B0-AF57-234F910529EF</incoming>
<outgoing>sid-A6DA25CE-636A-46B7-8005-759577956F09</outgoing>
</task>
<task completionQuantity="1" id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" isForCompensation="false" name="No Task" startQuantity="1">
<task id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" name="No Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</incoming>
<outgoing>sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE</outgoing>
</task>
<task completionQuantity="1" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" isForCompensation="false" name="Done" startQuantity="1">
<task id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" name="Done">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-0895E09C-077C-4D12-8C11-31F28CBC7740</incoming>
<outgoing>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</outgoing>
</task>
<endEvent id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</incoming>
</endEvent>
<inclusiveGateway gatewayDirection="Converging" id="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" name="">
<inclusiveGateway id="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" name="" gatewayDirection="Converging" default="sid-0895E09C-077C-4D12-8C11-31F28CBC7740">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-E3493781-6466-4AED-BAD2-63D115E14820</incoming>
<incoming>sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE</incoming>
<incoming>sid-A6DA25CE-636A-46B7-8005-759577956F09</incoming>
<outgoing>sid-0895E09C-077C-4D12-8C11-31F28CBC7740</outgoing>
</inclusiveGateway>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778"/>
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86"/>
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3"/>
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7"/>
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3"/>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5"/>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5"/>
<sequenceFlow id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" name="" sourceRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" targetRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5"/>
<sequenceFlow id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" name="" sourceRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0"/>
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB"/>
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5"/>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" />
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" />
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" />
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" />
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3">
<conditionExpression xsi:type="tFormalExpression">choice == 'No'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<conditionExpression xsi:type="tFormalExpression">choice == 'Yes'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" />
<sequenceFlow id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" name="" sourceRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" targetRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" />
<sequenceFlow id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" name="" sourceRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" />
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" />
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" />
</process>
<bpmndi:BPMNDiagram id="sid-70742719-bbc1-49e7-aa4e-ad7ae1df57a8">
<bpmndi:BPMNPlane bpmnElement="sid-6b109fe2-498a-4dd3-a372-4ad57a3e03b8" id="sid-17cf042c-b181-4b41-ac37-d9559cd9c89f">
<bpmndi:BPMNShape bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="776.0" x="120.0" y="90.0"/>
<bpmndi:BPMNPlane id="sid-17cf042c-b181-4b41-ac37-d9559cd9c89f" bpmnElement="sid-6b109fe2-498a-4dd3-a372-4ad57a3e03b8">
<bpmndi:BPMNShape id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" isHorizontal="true">
<omgdc:Bounds x="120" y="90" width="776" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="746.0" x="150.0" y="90.0"/>
<bpmndi:BPMNShape id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" isHorizontal="true">
<omgdc:Bounds x="150" y="90" width="746" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui">
<omgdc:Bounds height="30.0" width="30.0" x="190.0" y="122.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui">
<omgdc:Bounds height="40.0" width="40.0" x="315.0" y="117.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui">
<omgdc:Bounds height="80.0" width="100.0" x="469.0" y="97.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="214.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="261.0" y="339.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui">
<omgdc:Bounds height="80.0" width="100.0" x="371.0" y="319.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="437.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui">
<omgdc:Bounds height="80.0" width="100.0" x="678.0" y="328.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui">
<omgdc:Bounds height="28.0" width="28.0" x="714.0" y="448.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5" id="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5_gui">
<omgdc:Bounds height="40.0" width="40.0" x="600.0" y="348.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF" id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui">
<omgdi:waypoint x="301.0" y="359.0"/>
<omgdi:waypoint x="371.0" y="359.0"/>
<bpmndi:BPMNEdge id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui" bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09">
<omgdi:waypoint x="471" y="359" />
<omgdi:waypoint x="535.5" y="359" />
<omgdi:waypoint x="535.5" y="368.5" />
<omgdi:waypoint x="600" y="368" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui">
<omgdi:waypoint x="355.0" y="137.0"/>
<omgdi:waypoint x="469.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui" bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF">
<omgdi:waypoint x="728" y="408" />
<omgdi:waypoint x="728" y="448" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui">
<omgdi:waypoint x="281.0" y="294.0"/>
<omgdi:waypoint x="281.0" y="339.0"/>
<bpmndi:BPMNEdge id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740_gui" bpmnElement="sid-0895E09C-077C-4D12-8C11-31F28CBC7740">
<omgdi:waypoint x="640" y="368" />
<omgdi:waypoint x="678" y="368" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE_gui">
<omgdi:waypoint x="331.0" y="477.0"/>
<omgdi:waypoint x="630.0" y="477.0"/>
<omgdi:waypoint x="621.0" y="388.0"/>
<bpmndi:BPMNEdge id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE_gui" bpmnElement="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE">
<omgdi:waypoint x="331" y="477" />
<omgdi:waypoint x="630" y="477" />
<omgdi:waypoint x="621" y="388" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui">
<omgdi:waypoint x="728.0" y="408.0"/>
<omgdi:waypoint x="728.0" y="448.0"/>
<bpmndi:BPMNEdge id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui" bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820">
<omgdi:waypoint x="569" y="137" />
<omgdi:waypoint x="630" y="137" />
<omgdi:waypoint x="620" y="348" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui">
<omgdi:waypoint x="220.0" y="137.0"/>
<omgdi:waypoint x="315.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui" bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF">
<omgdi:waypoint x="301" y="359" />
<omgdi:waypoint x="371" y="359" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09" id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui">
<omgdi:waypoint x="471.0" y="359.0"/>
<omgdi:waypoint x="535.5" y="359.0"/>
<omgdi:waypoint x="535.5" y="368.5"/>
<omgdi:waypoint x="600.0" y="368.0"/>
<bpmndi:BPMNEdge id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui" bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42">
<omgdi:waypoint x="281" y="379" />
<omgdi:waypoint x="281" y="437" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui">
<omgdi:waypoint x="335.0" y="157.0"/>
<omgdi:waypoint x="335.5" y="185.5"/>
<omgdi:waypoint x="281.0" y="185.5"/>
<omgdi:waypoint x="281.0" y="214.0"/>
<bpmndi:BPMNEdge id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui" bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140">
<omgdi:waypoint x="281" y="294" />
<omgdi:waypoint x="281" y="339" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740_gui">
<omgdi:waypoint x="640.0" y="368.0"/>
<omgdi:waypoint x="678.0" y="368.0"/>
<bpmndi:BPMNEdge id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui" bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C">
<omgdi:waypoint x="335" y="157" />
<omgdi:waypoint x="335.5" y="185.5" />
<omgdi:waypoint x="281" y="185.5" />
<omgdi:waypoint x="281" y="214" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui">
<omgdi:waypoint x="281.0" y="379.0"/>
<omgdi:waypoint x="281.0" y="437.0"/>
<bpmndi:BPMNEdge id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui" bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94">
<omgdi:waypoint x="355" y="137" />
<omgdi:waypoint x="469" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820" id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui">
<omgdi:waypoint x="569.0" y="137.0"/>
<omgdi:waypoint x="630.0" y="137.0"/>
<omgdi:waypoint x="620.0" y="348.0"/>
<bpmndi:BPMNEdge id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui" bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612">
<omgdi:waypoint x="220" y="137" />
<omgdi:waypoint x="315" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui" bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE">
<omgdc:Bounds x="190" y="122" width="30" height="30" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui" bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778">
<omgdc:Bounds x="315" y="117" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui" bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86">
<omgdc:Bounds x="469" y="97" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui" bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3">
<omgdc:Bounds x="231" y="214" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" isMarkerVisible="true">
<omgdc:Bounds x="261" y="339" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui" bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<omgdc:Bounds x="371" y="319" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3_gui" bpmnElement="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3">
<omgdc:Bounds x="231" y="437" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui" bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0">
<omgdc:Bounds x="678" y="328" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui" bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB">
<omgdc:Bounds x="714" y="448" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5_gui" bpmnElement="sid-EBB511F3-5AD5-4307-9B9B-85C17F8889D5">
<omgdc:Bounds x="600" y="348" width="40" height="40" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-787944f5-462c-48b5-bce6-9f81a33c0310" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:signavio="http://www.signavio.com" id="sid-787944f5-462c-48b5-bce6-9f81a33c0310" targetNamespace="http://www.signavio.com/bpmn20" exporter="Camunda Modeler" exporterVersion="4.11.1" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
<collaboration id="sid-e3b04a04-0860-4643-ad2d-bfe79c257bd9">
<participant id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" name="Parallel Through Same Task" processRef="sid-57c563e3-fb68-4961-ae34-b6201e0c09e8">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
</participant>
</collaboration>
<process id="sid-57c563e3-fb68-4961-ae34-b6201e0c09e8" isClosed="false" isExecutable="false" name="Parallel Through Same Task" processType="None">
<process id="sid-57c563e3-fb68-4961-ae34-b6201e0c09e8" name="Parallel Through Same Task" processType="None" isClosed="false" isExecutable="false">
<laneSet id="sid-d79fd2d7-1cb4-4e41-9b4a-8daac27581a1">
<lane id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" name="Tester">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue=""/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="" />
</extensionElements>
<flowNodeRef>sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE</flowNodeRef>
<flowNodeRef>sid-349F8C0C-45EA-489C-84DD-1D944F48D778</flowNodeRef>
@ -27,175 +27,179 @@
</laneSet>
<startEvent id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<outgoing>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</outgoing>
</startEvent>
<parallelGateway gatewayDirection="Diverging" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="">
<parallelGateway id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-F3994F51-FE54-4910-A1F4-E5895AA1A612</incoming>
<outgoing>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</outgoing>
<outgoing>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</outgoing>
</parallelGateway>
<task completionQuantity="1" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" isForCompensation="false" name="Repeated Task" startQuantity="1">
<task id="sid-57463471-693A-42A2-9EC6-6460BEDECA86" name="Repeated Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-7E15C71B-DE9E-4788-B140-A647C99FDC94</incoming>
<incoming>sid-A6DA25CE-636A-46B7-8005-759577956F09</incoming>
<outgoing>sid-E3493781-6466-4AED-BAD2-63D115E14820</outgoing>
</task>
<task completionQuantity="1" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" isForCompensation="false" name="Choice 1" startQuantity="1">
<task id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" name="Choice 1">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-B6E22A74-A691-453A-A789-B9F8AF787D7C</incoming>
<outgoing>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</outgoing>
</task>
<exclusiveGateway gatewayDirection="Diverging" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="">
<exclusiveGateway id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" name="" gatewayDirection="Diverging">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-CAEAD081-6E73-4C98-8656-C67DA18F5140</incoming>
<outgoing>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</outgoing>
<outgoing>sid-9C753C3D-F964-45B0-AF57-234F910529EF</outgoing>
</exclusiveGateway>
<task completionQuantity="1" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" isForCompensation="false" name="Yes Task" startQuantity="1">
<task id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" name="Yes Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-9C753C3D-F964-45B0-AF57-234F910529EF</incoming>
<outgoing>sid-A6DA25CE-636A-46B7-8005-759577956F09</outgoing>
</task>
<task completionQuantity="1" id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" isForCompensation="false" name="No Task" startQuantity="1">
<task id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" name="No Task">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-3742C960-71D0-4342-8064-AF1BB9EECB42</incoming>
<outgoing>sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE</outgoing>
</task>
<task completionQuantity="1" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" isForCompensation="false" name="Done" startQuantity="1">
<task id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" name="Done">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc" />
</extensionElements>
<incoming>sid-0895E09C-077C-4D12-8C11-31F28CBC7740</incoming>
<outgoing>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</outgoing>
</task>
<endEvent id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" name="">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-40496205-24D7-494C-AB6B-CD42B8D606EF</incoming>
</endEvent>
<inclusiveGateway gatewayDirection="Converging" id="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" name="">
<inclusiveGateway id="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" name="" gatewayDirection="Converging" default="sid-0895E09C-077C-4D12-8C11-31F28CBC7740">
<extensionElements>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff" />
</extensionElements>
<incoming>sid-E3493781-6466-4AED-BAD2-63D115E14820</incoming>
<incoming>sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE</incoming>
<outgoing>sid-0895E09C-077C-4D12-8C11-31F28CBC7740</outgoing>
</inclusiveGateway>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778"/>
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86"/>
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3"/>
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7"/>
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3"/>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5"/>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842"/>
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86"/>
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB"/>
<sequenceFlow id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" name="" sourceRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" targetRef="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842"/>
<sequenceFlow id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" name="" sourceRef="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0"/>
<sequenceFlow id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" name="" sourceRef="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" targetRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" />
<sequenceFlow id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" />
<sequenceFlow id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" name="" sourceRef="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" targetRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" />
<sequenceFlow id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" name="" sourceRef="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" targetRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" />
<sequenceFlow id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" name="No" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3">
<conditionExpression xsi:type="tFormalExpression">choice == 'No'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-9C753C3D-F964-45B0-AF57-234F910529EF" name="Yes" sourceRef="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" targetRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<conditionExpression xsi:type="tFormalExpression">choice == 'Yes'</conditionExpression>
</sequenceFlow>
<sequenceFlow id="sid-E3493781-6466-4AED-BAD2-63D115E14820" name="" sourceRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" targetRef="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" />
<sequenceFlow id="sid-A6DA25CE-636A-46B7-8005-759577956F09" name="" sourceRef="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" targetRef="sid-57463471-693A-42A2-9EC6-6460BEDECA86" />
<sequenceFlow id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" name="" sourceRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" targetRef="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" />
<sequenceFlow id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" name="" sourceRef="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" targetRef="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" />
<sequenceFlow id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" name="" sourceRef="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" targetRef="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" />
</process>
<bpmndi:BPMNDiagram id="sid-d0820a7d-420b-432a-8e44-8a26b4f82fda">
<bpmndi:BPMNPlane bpmnElement="sid-e3b04a04-0860-4643-ad2d-bfe79c257bd9" id="sid-0548e295-5887-423f-b623-7cdeb4dacdf1">
<bpmndi:BPMNShape bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="776.0" x="120.0" y="90.0"/>
<bpmndi:BPMNPlane id="sid-0548e295-5887-423f-b623-7cdeb4dacdf1" bpmnElement="sid-e3b04a04-0860-4643-ad2d-bfe79c257bd9">
<bpmndi:BPMNShape id="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00_gui" bpmnElement="sid-B2E5AD50-035A-4CE8-B8A3-B175A6767B00" isHorizontal="true">
<omgdc:Bounds x="120" y="90" width="776" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" isHorizontal="true">
<omgdc:Bounds height="479.0" width="746.0" x="150.0" y="90.0"/>
<bpmndi:BPMNShape id="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142_gui" bpmnElement="sid-72009BCE-46B4-4B4B-AEAE-1E7199522142" isHorizontal="true">
<omgdc:Bounds x="150" y="90" width="746" height="479" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE" id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui">
<omgdc:Bounds height="30.0" width="30.0" x="190.0" y="122.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778" id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui">
<omgdc:Bounds height="40.0" width="40.0" x="315.0" y="117.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86" id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui">
<omgdc:Bounds height="80.0" width="100.0" x="469.0" y="97.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3" id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="214.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" isMarkerVisible="true">
<omgdc:Bounds height="40.0" width="40.0" x="261.0" y="339.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5" id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui">
<omgdc:Bounds height="80.0" width="100.0" x="371.0" y="319.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3" id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3_gui">
<omgdc:Bounds height="80.0" width="100.0" x="231.0" y="437.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0" id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui">
<omgdc:Bounds height="80.0" width="100.0" x="678.0" y="328.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB" id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui">
<omgdc:Bounds height="28.0" width="28.0" x="714.0" y="448.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842" id="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842_gui">
<omgdc:Bounds height="40.0" width="40.0" x="585.0" y="348.0"/>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF" id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui">
<omgdi:waypoint x="301.0" y="359.0"/>
<omgdi:waypoint x="371.0" y="359.0"/>
<bpmndi:BPMNEdge id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740_gui" bpmnElement="sid-0895E09C-077C-4D12-8C11-31F28CBC7740">
<omgdi:waypoint x="625" y="368" />
<omgdi:waypoint x="678" y="368" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94" id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui">
<omgdi:waypoint x="355.0" y="137.0"/>
<omgdi:waypoint x="469.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE_gui" bpmnElement="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE">
<omgdi:waypoint x="331" y="477" />
<omgdi:waypoint x="605.5" y="477" />
<omgdi:waypoint x="605" y="388" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140" id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui">
<omgdi:waypoint x="281.0" y="294.0"/>
<omgdi:waypoint x="281.0" y="339.0"/>
<bpmndi:BPMNEdge id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui" bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF">
<omgdi:waypoint x="728" y="408" />
<omgdi:waypoint x="728" y="448" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE" id="sid-12F60C82-D18F-4747-B5B5-34FD40F2C8DE_gui">
<omgdi:waypoint x="331.0" y="477.0"/>
<omgdi:waypoint x="605.5" y="477.0"/>
<omgdi:waypoint x="605.0" y="388.0"/>
<bpmndi:BPMNEdge id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui" bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09">
<omgdi:waypoint x="471" y="359" />
<omgdi:waypoint x="525.12109375" y="359" />
<omgdi:waypoint x="525" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-40496205-24D7-494C-AB6B-CD42B8D606EF" id="sid-40496205-24D7-494C-AB6B-CD42B8D606EF_gui">
<omgdi:waypoint x="728.0" y="408.0"/>
<omgdi:waypoint x="728.0" y="448.0"/>
<bpmndi:BPMNEdge id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui" bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820">
<omgdi:waypoint x="569" y="137" />
<omgdi:waypoint x="605.5" y="137" />
<omgdi:waypoint x="605" y="348" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612" id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui">
<omgdi:waypoint x="220.0" y="137.0"/>
<omgdi:waypoint x="315.0" y="137.0"/>
<bpmndi:BPMNEdge id="sid-9C753C3D-F964-45B0-AF57-234F910529EF_gui" bpmnElement="sid-9C753C3D-F964-45B0-AF57-234F910529EF">
<omgdi:waypoint x="301" y="359" />
<omgdi:waypoint x="371" y="359" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-A6DA25CE-636A-46B7-8005-759577956F09" id="sid-A6DA25CE-636A-46B7-8005-759577956F09_gui">
<omgdi:waypoint x="471.0" y="359.0"/>
<omgdi:waypoint x="525.12109375" y="359.0"/>
<omgdi:waypoint x="525.0" y="177.0"/>
<bpmndi:BPMNEdge id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui" bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42">
<omgdi:waypoint x="281" y="379" />
<omgdi:waypoint x="281" y="437" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C" id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui">
<omgdi:waypoint x="335.0" y="157.0"/>
<omgdi:waypoint x="335.5" y="185.5"/>
<omgdi:waypoint x="281.0" y="185.5"/>
<omgdi:waypoint x="281.0" y="214.0"/>
<bpmndi:BPMNEdge id="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140_gui" bpmnElement="sid-CAEAD081-6E73-4C98-8656-C67DA18F5140">
<omgdi:waypoint x="281" y="294" />
<omgdi:waypoint x="281" y="339" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-0895E09C-077C-4D12-8C11-31F28CBC7740" id="sid-0895E09C-077C-4D12-8C11-31F28CBC7740_gui">
<omgdi:waypoint x="625.0" y="368.0"/>
<omgdi:waypoint x="678.0" y="368.0"/>
<bpmndi:BPMNEdge id="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C_gui" bpmnElement="sid-B6E22A74-A691-453A-A789-B9F8AF787D7C">
<omgdi:waypoint x="335" y="157" />
<omgdi:waypoint x="335.5" y="185.5" />
<omgdi:waypoint x="281" y="185.5" />
<omgdi:waypoint x="281" y="214" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-3742C960-71D0-4342-8064-AF1BB9EECB42" id="sid-3742C960-71D0-4342-8064-AF1BB9EECB42_gui">
<omgdi:waypoint x="281.0" y="379.0"/>
<omgdi:waypoint x="281.0" y="437.0"/>
<bpmndi:BPMNEdge id="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94_gui" bpmnElement="sid-7E15C71B-DE9E-4788-B140-A647C99FDC94">
<omgdi:waypoint x="355" y="137" />
<omgdi:waypoint x="469" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="sid-E3493781-6466-4AED-BAD2-63D115E14820" id="sid-E3493781-6466-4AED-BAD2-63D115E14820_gui">
<omgdi:waypoint x="569.0" y="137.0"/>
<omgdi:waypoint x="605.5" y="137.0"/>
<omgdi:waypoint x="605.0" y="348.0"/>
<bpmndi:BPMNEdge id="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612_gui" bpmnElement="sid-F3994F51-FE54-4910-A1F4-E5895AA1A612">
<omgdi:waypoint x="220" y="137" />
<omgdi:waypoint x="315" y="137" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE_gui" bpmnElement="sid-B33EE043-AB93-4343-A1D4-7B267E2DAFBE">
<omgdc:Bounds x="190" y="122" width="30" height="30" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-349F8C0C-45EA-489C-84DD-1D944F48D778_gui" bpmnElement="sid-349F8C0C-45EA-489C-84DD-1D944F48D778">
<omgdc:Bounds x="315" y="117" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-57463471-693A-42A2-9EC6-6460BEDECA86_gui" bpmnElement="sid-57463471-693A-42A2-9EC6-6460BEDECA86">
<omgdc:Bounds x="469" y="97" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3_gui" bpmnElement="sid-CA089240-802A-4C32-9130-FB1A33DDCCC3">
<omgdc:Bounds x="231" y="214" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-E2054FDD-0C20-4939-938D-2169B317FEE7_gui" bpmnElement="sid-E2054FDD-0C20-4939-938D-2169B317FEE7" isMarkerVisible="true">
<omgdc:Bounds x="261" y="339" width="40" height="40" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5_gui" bpmnElement="sid-34AD79D9-BE0C-4F97-AC23-7A97D238A6E5">
<omgdc:Bounds x="371" y="319" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3_gui" bpmnElement="sid-2A302E91-F89F-4913-8F55-5C3AC5FAE4D3">
<omgdc:Bounds x="231" y="437" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0_gui" bpmnElement="sid-F3A979E3-F586-4807-8223-1FAB5A5647B0">
<omgdc:Bounds x="678" y="328" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB_gui" bpmnElement="sid-51816945-79BF-47F9-BA3C-E95ABAE3D1DB">
<omgdc:Bounds x="714" y="448" width="28" height="28" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842_gui" bpmnElement="sid-AF897BE2-CC07-4236-902B-DD6E1AB31842">
<omgdc:Bounds x="585" y="348" width="40" height="40" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_10tix8p" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_10tix8p" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="boundary_event" name="&#10;&#10;" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_1pbxbk9</bpmn:outgoing>
@ -65,77 +65,46 @@
<bpmn:boundaryEvent id="Event_0iiih8g" name="FedUp" attachedToRef="Subworkflow">
<bpmn:outgoing>Flow_0yzqey7</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0irxg9m">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">PT0.03S</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.03S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:boundaryEvent>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="boundary_event">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="162" y="211" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0zzr7a4_di" bpmnElement="Subworkflow" isExpanded="true">
<dc:Bounds x="370" y="77" width="690" height="303" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0jwaisd_di" bpmnElement="Event_0jwaisd">
<dc:Bounds x="410" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0ytsuvr_di" bpmnElement="Activity_1ya1db2">
<dc:Bounds x="910" y="470" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_11rkn53_di" bpmnElement="Activity_Pester_Dad">
<dc:Bounds x="570" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0yzqey7_di" bpmnElement="Flow_0yzqey7">
<di:waypoint x="950" y="398" />
<di:waypoint x="950" y="444" />
<di:waypoint x="960" y="444" />
<di:waypoint x="960" y="470" />
<bpmndi:BPMNEdge id="Flow_1jnwt7c_di" bpmnElement="Flow_1jnwt7c">
<di:waypoint x="320" y="229" />
<di:waypoint x="370" y="229" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0vmzw8v_di" bpmnElement="Flow_0vmzw8v">
<di:waypoint x="446" y="177" />
<di:waypoint x="570" y="177" />
<bpmndi:BPMNEdge id="Flow_0jqkm6y_di" bpmnElement="Flow_0jqkm6y">
<di:waypoint x="1280" y="220" />
<di:waypoint x="1402" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0lasqgj_di" bpmnElement="Event_0lasqgj">
<dc:Bounds x="952" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1pbxbk9_di" bpmnElement="Flow_1pbxbk9">
<di:waypoint x="198" y="229" />
<di:waypoint x="220" y="229" />
<bpmndi:BPMNEdge id="Flow_1v53za5_di" bpmnElement="Flow_1v53za5">
<di:waypoint x="1000" y="510" />
<di:waypoint x="1230" y="510" />
<di:waypoint x="1230" y="260" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0f0f7wg_di" bpmnElement="Flow_0f0f7wg">
<di:waypoint x="1060" y="220" />
<di:waypoint x="1180" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1v53za5_di" bpmnElement="Flow_1v53za5">
<di:waypoint x="1010" y="510" />
<di:waypoint x="1230" y="510" />
<di:waypoint x="1230" y="260" />
<bpmndi:BPMNEdge id="Flow_1pbxbk9_di" bpmnElement="Flow_1pbxbk9">
<di:waypoint x="198" y="229" />
<di:waypoint x="220" y="229" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_000aj7r_di" bpmnElement="Event_000aj7r">
<dc:Bounds x="1402" y="202" width="36" height="36" />
<bpmndi:BPMNEdge id="Flow_0yzqey7_di" bpmnElement="Flow_0yzqey7">
<di:waypoint x="950" y="398" />
<di:waypoint x="950" y="470" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="162" y="211" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0jqkm6y_di" bpmnElement="Flow_0jqkm6y">
<di:waypoint x="1280" y="220" />
<di:waypoint x="1402" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1vjvfhi_di" bpmnElement="StopCar">
<dc:Bounds x="1180" y="180" width="100" height="80" />
<bpmndi:BPMNShape id="Activity_0ytsuvr_di" bpmnElement="Activity_1ya1db2">
<dc:Bounds x="900" y="470" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_17zgs3c_di" bpmnElement="Gateway_17zgs3c" isMarkerVisible="true">
<dc:Bounds x="725" y="152" width="50" height="50" />
<bpmndi:BPMNShape id="Activity_0zzr7a4_di" bpmnElement="Subworkflow" isExpanded="true">
<dc:Bounds x="370" y="77" width="690" height="303" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0axldsu_di" bpmnElement="Flow_0axldsu">
<di:waypoint x="670" y="177" />
<di:waypoint x="725" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0q65w45_di" bpmnElement="Flow_0q65w45">
<di:waypoint x="775" y="177" />
<di:waypoint x="952" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="855" y="159" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0hkqchr_di" bpmnElement="Flow_0hkqchr">
<di:waypoint x="750" y="202" />
<di:waypoint x="750" y="320" />
@ -145,10 +114,39 @@
<dc:Bounds x="678" y="302" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1jnwt7c_di" bpmnElement="Flow_1jnwt7c">
<di:waypoint x="320" y="229" />
<di:waypoint x="370" y="229" />
<bpmndi:BPMNEdge id="Flow_0q65w45_di" bpmnElement="Flow_0q65w45">
<di:waypoint x="775" y="177" />
<di:waypoint x="952" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="855" y="159" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0axldsu_di" bpmnElement="Flow_0axldsu">
<di:waypoint x="670" y="177" />
<di:waypoint x="725" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0vmzw8v_di" bpmnElement="Flow_0vmzw8v">
<di:waypoint x="446" y="177" />
<di:waypoint x="570" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0jwaisd_di" bpmnElement="Event_0jwaisd">
<dc:Bounds x="410" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_11rkn53_di" bpmnElement="Activity_Pester_Dad">
<dc:Bounds x="570" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0lasqgj_di" bpmnElement="Event_0lasqgj">
<dc:Bounds x="952" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_17zgs3c_di" bpmnElement="Gateway_17zgs3c" isMarkerVisible="true">
<dc:Bounds x="725" y="152" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_000aj7r_di" bpmnElement="Event_000aj7r">
<dc:Bounds x="1402" y="202" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1vjvfhi_di" bpmnElement="StopCar">
<dc:Bounds x="1180" y="180" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0q76z8e_di" bpmnElement="Activity_09c27ms">
<dc:Bounds x="220" y="189" width="100" height="80" />
</bpmndi:BPMNShape>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_1l7iuxt" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.10.0" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.15.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_1l7iuxt" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.15.0">
<bpmn:process id="test_timer" name="test_timer" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_164sojd</bpmn:outgoing>
@ -8,7 +8,7 @@
<bpmn:boundaryEvent id="Event_0y4hbl0" cancelActivity="false" attachedToRef="user_task">
<bpmn:outgoing>Flow_0ac4lx5</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_1w16uhl">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(milliseconds=2)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.002S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:boundaryEvent>
<bpmn:sequenceFlow id="Flow_0ac4lx5" sourceRef="Event_0y4hbl0" targetRef="set_variable" />
@ -34,32 +34,23 @@
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="test_timer">
<bpmndi:BPMNEdge id="Flow_164sojd_di" bpmnElement="Flow_164sojd">
<di:waypoint x="188" y="117" />
<di:waypoint x="220" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ac4lx5_di" bpmnElement="Flow_0ac4lx5">
<di:waypoint x="420" y="175" />
<di:waypoint x="420" y="240" />
<di:waypoint x="490" y="240" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_04tuv5z_di" bpmnElement="Flow_04tuv5z">
<di:waypoint x="460" y="117" />
<di:waypoint x="542" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1m2vq4v_di" bpmnElement="Flow_1m2vq4v">
<di:waypoint x="320" y="117" />
<di:waypoint x="360" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1oduoqz_di" bpmnElement="set_variable">
<dc:Bounds x="490" y="200" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0olfqht_di" bpmnElement="final_end_event">
<dc:Bounds x="542" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="527" y="142" width="69" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_04tuv5z_di" bpmnElement="Flow_04tuv5z">
<di:waypoint x="460" y="117" />
<di:waypoint x="682" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ac4lx5_di" bpmnElement="Flow_0ac4lx5">
<di:waypoint x="420" y="175" />
<di:waypoint x="420" y="240" />
<di:waypoint x="460" y="240" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_164sojd_di" bpmnElement="Flow_164sojd">
<di:waypoint x="188" y="117" />
<di:waypoint x="220" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="152" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
@ -69,6 +60,15 @@
<bpmndi:BPMNShape id="Activity_0hx9z9f_di" bpmnElement="user_task">
<dc:Bounds x="360" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0olfqht_di" bpmnElement="final_end_event">
<dc:Bounds x="682" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="667" y="142" width="69" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1oduoqz_di" bpmnElement="set_variable">
<dc:Bounds x="460" y="200" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0w4k4ro_di" bpmnElement="Event_0y4hbl0">
<dc:Bounds x="402" y="139" width="36" height="36" />
</bpmndi:BPMNShape>

View File

@ -27,7 +27,7 @@
<bpmn:incoming>Flow_1rfbrlf</bpmn:incoming>
<bpmn:outgoing>Flow_0mppjk9</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0reo0gl">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(seconds=1)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT1S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_1rfbrlf" sourceRef="Gateway_1434v9l" targetRef="timer_event" />

View File

@ -0,0 +1,131 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_1cze19k" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1" modeler:executionPlatform="Camunda Platform" modeler:executionPlatformVersion="7.15.0">
<bpmn:process id="main" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_1g5ma8d</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_1g5ma8d" sourceRef="StartEvent_1" targetRef="set_data" />
<bpmn:sequenceFlow id="Flow_1g7lmw3" sourceRef="set_data" targetRef="first" />
<bpmn:inclusiveGateway id="first" default="default">
<bpmn:incoming>Flow_1g7lmw3</bpmn:incoming>
<bpmn:outgoing>default</bpmn:outgoing>
<bpmn:outgoing>u_positive</bpmn:outgoing>
<bpmn:outgoing>w_positive</bpmn:outgoing>
</bpmn:inclusiveGateway>
<bpmn:sequenceFlow id="default" sourceRef="first" targetRef="increment_v" />
<bpmn:sequenceFlow id="u_positive" name="u positive&#10;&#10;" sourceRef="first" targetRef="u_plus_v">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">u &gt; 0</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="w_positive" name="w positive" sourceRef="first" targetRef="w_plus_v">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">w &gt; 0</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="Flow_0byxq9y" sourceRef="u_plus_v" targetRef="second" />
<bpmn:inclusiveGateway id="second">
<bpmn:incoming>Flow_0byxq9y</bpmn:incoming>
<bpmn:incoming>Flow_0hatxr4</bpmn:incoming>
<bpmn:incoming>Flow_17jgshs</bpmn:incoming>
<bpmn:outgoing>check_v</bpmn:outgoing>
</bpmn:inclusiveGateway>
<bpmn:sequenceFlow id="Flow_0hatxr4" sourceRef="w_plus_v" targetRef="second" />
<bpmn:sequenceFlow id="Flow_17jgshs" sourceRef="increment_v" targetRef="second" />
<bpmn:endEvent id="Event_05yg5je">
<bpmn:incoming>check_v</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="check_v" sourceRef="second" targetRef="Event_05yg5je">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">v == 0</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:userTask id="set_data" name="Set Data">
<bpmn:incoming>Flow_1g5ma8d</bpmn:incoming>
<bpmn:outgoing>Flow_1g7lmw3</bpmn:outgoing>
</bpmn:userTask>
<bpmn:scriptTask id="increment_v" name="v += 1">
<bpmn:incoming>default</bpmn:incoming>
<bpmn:outgoing>Flow_17jgshs</bpmn:outgoing>
<bpmn:script>v += 1</bpmn:script>
</bpmn:scriptTask>
<bpmn:scriptTask id="u_plus_v" name="u += v">
<bpmn:incoming>u_positive</bpmn:incoming>
<bpmn:outgoing>Flow_0byxq9y</bpmn:outgoing>
<bpmn:script>u += v</bpmn:script>
</bpmn:scriptTask>
<bpmn:scriptTask id="w_plus_v" name="w += v">
<bpmn:incoming>w_positive</bpmn:incoming>
<bpmn:outgoing>Flow_0hatxr4</bpmn:outgoing>
<bpmn:script>w += v</bpmn:script>
</bpmn:scriptTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="main">
<bpmndi:BPMNEdge id="Flow_0axvo8d_di" bpmnElement="check_v">
<di:waypoint x="735" y="117" />
<di:waypoint x="792" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_17jgshs_di" bpmnElement="Flow_17jgshs">
<di:waypoint x="630" y="117" />
<di:waypoint x="685" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0hatxr4_di" bpmnElement="Flow_0hatxr4">
<di:waypoint x="630" y="340" />
<di:waypoint x="710" y="340" />
<di:waypoint x="710" y="142" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0byxq9y_di" bpmnElement="Flow_0byxq9y">
<di:waypoint x="630" y="230" />
<di:waypoint x="710" y="230" />
<di:waypoint x="710" y="142" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_13u1611_di" bpmnElement="w_positive">
<di:waypoint x="450" y="142" />
<di:waypoint x="450" y="340" />
<di:waypoint x="530" y="340" />
<bpmndi:BPMNLabel>
<dc:Bounds x="458" y="323" width="48" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0qf291b_di" bpmnElement="u_positive">
<di:waypoint x="450" y="142" />
<di:waypoint x="450" y="230" />
<di:waypoint x="530" y="230" />
<bpmndi:BPMNLabel>
<dc:Bounds x="457" y="210" width="47" height="40" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_070yjdf_di" bpmnElement="default">
<di:waypoint x="475" y="117" />
<di:waypoint x="530" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1g7lmw3_di" bpmnElement="Flow_1g7lmw3">
<di:waypoint x="370" y="117" />
<di:waypoint x="425" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1g5ma8d_di" bpmnElement="Flow_1g5ma8d">
<di:waypoint x="215" y="117" />
<di:waypoint x="270" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0ym4oxy_di" bpmnElement="first">
<dc:Bounds x="425" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0taxy2e_di" bpmnElement="second">
<dc:Bounds x="685" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_05yg5je_di" bpmnElement="Event_05yg5je">
<dc:Bounds x="792" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1mqdr3e_di" bpmnElement="set_data">
<dc:Bounds x="270" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0kkbcp1_di" bpmnElement="increment_v">
<dc:Bounds x="530" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0ttkifo_di" bpmnElement="u_plus_v">
<dc:Bounds x="530" y="190" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0h6sdsx_di" bpmnElement="w_plus_v">
<dc:Bounds x="530" y="300" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -0,0 +1,590 @@
{
"serializer_version": "1.1",
"data": {},
"last_task": "6bd75ef7-d765-4d0b-83ba-1158d2e9ed0a",
"success": true,
"tasks": {
"ccca8dcf-e833-494a-9281-ec133223ab75": {
"id": "ccca8dcf-e833-494a-9281-ec133223ab75",
"parent": null,
"children": [
"6bd75ef7-d765-4d0b-83ba-1158d2e9ed0a"
],
"last_state_change": 1673895963.536834,
"state": 32,
"task_spec": "Root",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"6bd75ef7-d765-4d0b-83ba-1158d2e9ed0a": {
"id": "6bd75ef7-d765-4d0b-83ba-1158d2e9ed0a",
"parent": "ccca8dcf-e833-494a-9281-ec133223ab75",
"children": [
"34a70bb5-88f7-4a71-9dea-da6893437633"
],
"last_state_change": 1673896001.8471706,
"state": 32,
"task_spec": "Start",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"34a70bb5-88f7-4a71-9dea-da6893437633": {
"id": "34a70bb5-88f7-4a71-9dea-da6893437633",
"parent": "6bd75ef7-d765-4d0b-83ba-1158d2e9ed0a",
"children": [
"28d6b82b-64e9-41ad-9620-cc00497c859f",
"deb1eb94-6537-4cb8-a7e6-ea28c4983732"
],
"last_state_change": 1673896001.8511543,
"state": 8,
"task_spec": "StartEvent_1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {
"repeat": 2,
"start_time": "2023-01-16 14:06:41.847524"
},
"data": {
"repeat_count": 0
}
},
"28d6b82b-64e9-41ad-9620-cc00497c859f": {
"id": "28d6b82b-64e9-41ad-9620-cc00497c859f",
"parent": "34a70bb5-88f7-4a71-9dea-da6893437633",
"children": [
"a07abe4c-8122-494f-8b43-b3c44d3f7e34",
"975c49d4-dceb-4137-829c-64c657894701"
],
"last_state_change": 1673895963.5375524,
"state": 4,
"task_spec": "StartEvent_1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"a07abe4c-8122-494f-8b43-b3c44d3f7e34": {
"id": "a07abe4c-8122-494f-8b43-b3c44d3f7e34",
"parent": "28d6b82b-64e9-41ad-9620-cc00497c859f",
"children": [],
"last_state_change": 1673895963.5380332,
"state": 4,
"task_spec": "return_to_StartEvent_1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"975c49d4-dceb-4137-829c-64c657894701": {
"id": "975c49d4-dceb-4137-829c-64c657894701",
"parent": "28d6b82b-64e9-41ad-9620-cc00497c859f",
"children": [
"e937e37e-04a7-45b6-b6a4-7615876ae19f"
],
"last_state_change": 1673895963.5380924,
"state": 4,
"task_spec": "task_1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"e937e37e-04a7-45b6-b6a4-7615876ae19f": {
"id": "e937e37e-04a7-45b6-b6a4-7615876ae19f",
"parent": "975c49d4-dceb-4137-829c-64c657894701",
"children": [
"42036b41-f934-457a-86e7-cc3b65882073"
],
"last_state_change": 1673895963.5384276,
"state": 4,
"task_spec": "Event_1uhhxu1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"42036b41-f934-457a-86e7-cc3b65882073": {
"id": "42036b41-f934-457a-86e7-cc3b65882073",
"parent": "e937e37e-04a7-45b6-b6a4-7615876ae19f",
"children": [
"583f99df-db90-4237-8718-c1cf638c4391",
"24f73965-e218-4f94-8ca9-5267cbf635ad"
],
"last_state_change": 1673895963.5386448,
"state": 4,
"task_spec": "task_2.BoundaryEventParent",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"583f99df-db90-4237-8718-c1cf638c4391": {
"id": "583f99df-db90-4237-8718-c1cf638c4391",
"parent": "42036b41-f934-457a-86e7-cc3b65882073",
"children": [
"825b0a7b-b33e-4692-a11c-9c0fb49e20c0"
],
"last_state_change": 1673895963.5391376,
"state": 4,
"task_spec": "task_2",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"825b0a7b-b33e-4692-a11c-9c0fb49e20c0": {
"id": "825b0a7b-b33e-4692-a11c-9c0fb49e20c0",
"parent": "583f99df-db90-4237-8718-c1cf638c4391",
"children": [
"e5b6e43e-2ba9-42a2-90c0-25202f096273"
],
"last_state_change": 1673895963.5393665,
"state": 4,
"task_spec": "Event_1vzwq7p",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"e5b6e43e-2ba9-42a2-90c0-25202f096273": {
"id": "e5b6e43e-2ba9-42a2-90c0-25202f096273",
"parent": "825b0a7b-b33e-4692-a11c-9c0fb49e20c0",
"children": [
"0a5fbc15-2807-463d-9762-b7b724835a40"
],
"last_state_change": 1673895963.5396175,
"state": 4,
"task_spec": "migration_test.EndJoin",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"0a5fbc15-2807-463d-9762-b7b724835a40": {
"id": "0a5fbc15-2807-463d-9762-b7b724835a40",
"parent": "e5b6e43e-2ba9-42a2-90c0-25202f096273",
"children": [],
"last_state_change": 1673895963.5398767,
"state": 4,
"task_spec": "End",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"24f73965-e218-4f94-8ca9-5267cbf635ad": {
"id": "24f73965-e218-4f94-8ca9-5267cbf635ad",
"parent": "42036b41-f934-457a-86e7-cc3b65882073",
"children": [],
"last_state_change": 1673895963.5390024,
"state": 1,
"task_spec": "Event_1bkh7yi",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"deb1eb94-6537-4cb8-a7e6-ea28c4983732": {
"id": "deb1eb94-6537-4cb8-a7e6-ea28c4983732",
"parent": "34a70bb5-88f7-4a71-9dea-da6893437633",
"children": [
"56045c5b-9400-4fea-ae82-b357268672f8"
],
"last_state_change": 1673895963.5376105,
"state": 4,
"task_spec": "task_1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"56045c5b-9400-4fea-ae82-b357268672f8": {
"id": "56045c5b-9400-4fea-ae82-b357268672f8",
"parent": "deb1eb94-6537-4cb8-a7e6-ea28c4983732",
"children": [
"fd71446e-d8b4-42dd-980b-624a82848853"
],
"last_state_change": 1673895963.540343,
"state": 4,
"task_spec": "Event_1uhhxu1",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"fd71446e-d8b4-42dd-980b-624a82848853": {
"id": "fd71446e-d8b4-42dd-980b-624a82848853",
"parent": "56045c5b-9400-4fea-ae82-b357268672f8",
"children": [
"8960300d-28c1-463d-b7a1-29e872c02d98",
"a6bca2b5-7064-49c9-a172-18c1435d173d"
],
"last_state_change": 1673895963.5405483,
"state": 4,
"task_spec": "task_2.BoundaryEventParent",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"8960300d-28c1-463d-b7a1-29e872c02d98": {
"id": "8960300d-28c1-463d-b7a1-29e872c02d98",
"parent": "fd71446e-d8b4-42dd-980b-624a82848853",
"children": [
"6b33df30-07fd-4572-abfd-f29eb9906f0b"
],
"last_state_change": 1673895963.540891,
"state": 4,
"task_spec": "task_2",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"6b33df30-07fd-4572-abfd-f29eb9906f0b": {
"id": "6b33df30-07fd-4572-abfd-f29eb9906f0b",
"parent": "8960300d-28c1-463d-b7a1-29e872c02d98",
"children": [
"0d571ca2-ffb1-4d8b-9dda-4e8cbd8b8ae1"
],
"last_state_change": 1673895963.5411036,
"state": 4,
"task_spec": "Event_1vzwq7p",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"0d571ca2-ffb1-4d8b-9dda-4e8cbd8b8ae1": {
"id": "0d571ca2-ffb1-4d8b-9dda-4e8cbd8b8ae1",
"parent": "6b33df30-07fd-4572-abfd-f29eb9906f0b",
"children": [
"1e8fc80a-1968-4411-a10b-16cb4261f3b8"
],
"last_state_change": 1673895963.5413618,
"state": 4,
"task_spec": "migration_test.EndJoin",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"1e8fc80a-1968-4411-a10b-16cb4261f3b8": {
"id": "1e8fc80a-1968-4411-a10b-16cb4261f3b8",
"parent": "0d571ca2-ffb1-4d8b-9dda-4e8cbd8b8ae1",
"children": [],
"last_state_change": 1673895963.541654,
"state": 4,
"task_spec": "End",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
},
"a6bca2b5-7064-49c9-a172-18c1435d173d": {
"id": "a6bca2b5-7064-49c9-a172-18c1435d173d",
"parent": "fd71446e-d8b4-42dd-980b-624a82848853",
"children": [],
"last_state_change": 1673895963.5408392,
"state": 1,
"task_spec": "Event_1bkh7yi",
"triggered": false,
"workflow_name": "migration_test",
"internal_data": {},
"data": {}
}
},
"root": "ccca8dcf-e833-494a-9281-ec133223ab75",
"spec": {
"name": "migration_test",
"description": "migration_test",
"file": "/home/essweine/work/sartography/code/SpiffWorkflow/tests/SpiffWorkflow/bpmn/data/serialization/v1-1.bpmn",
"task_specs": {
"Start": {
"id": "migration_test_1",
"name": "Start",
"description": "",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [],
"outputs": [
"StartEvent_1"
],
"typename": "StartTask"
},
"migration_test.EndJoin": {
"id": "migration_test_2",
"name": "migration_test.EndJoin",
"description": "",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"Event_1vzwq7p"
],
"outputs": [
"End"
],
"typename": "_EndJoin"
},
"End": {
"id": "migration_test_3",
"name": "End",
"description": "",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"migration_test.EndJoin"
],
"outputs": [],
"typename": "Simple"
},
"StartEvent_1": {
"id": "migration_test_4",
"name": "StartEvent_1",
"description": null,
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"Start",
"StartEvent_1"
],
"outputs": [
"StartEvent_1",
"task_1"
],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 179.0,
"y": 79.0
},
"data_input_associations": [],
"data_output_associations": [],
"event_definition": {
"internal": true,
"external": true,
"label": "StartEvent_1",
"cycle_definition": "(2,timedelta(seconds=0.1))",
"typename": "CycleTimerEventDefinition"
},
"typename": "StartEvent",
"extensions": {}
},
"task_1": {
"id": "migration_test_5",
"name": "task_1",
"description": "Task 1",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"StartEvent_1"
],
"outputs": [
"Event_1uhhxu1"
],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 290.0,
"y": 57.0
},
"data_input_associations": [],
"data_output_associations": [],
"script": "pass",
"typename": "ScriptTask",
"extensions": {}
},
"Event_1uhhxu1": {
"id": "migration_test_6",
"name": "Event_1uhhxu1",
"description": null,
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"task_1"
],
"outputs": [
"task_2.BoundaryEventParent"
],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 452.0,
"y": 79.0
},
"data_input_associations": [],
"data_output_associations": [],
"event_definition": {
"internal": true,
"external": true,
"label": "Event_1uhhxu1",
"dateTime": "datetime(2023, 1, 1)",
"typename": "TimerEventDefinition"
},
"typename": "IntermediateCatchEvent",
"extensions": {}
},
"task_2": {
"id": "migration_test_7",
"name": "task_2",
"description": "Task 2",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"task_2.BoundaryEventParent"
],
"outputs": [
"Event_1vzwq7p"
],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 560.0,
"y": 57.0
},
"data_input_associations": [],
"data_output_associations": [],
"script": "time.sleep(0.5)",
"typename": "ScriptTask",
"extensions": {}
},
"task_2.BoundaryEventParent": {
"id": "migration_test_8",
"name": "task_2.BoundaryEventParent",
"description": "",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"Event_1uhhxu1"
],
"outputs": [
"task_2",
"Event_1bkh7yi"
],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 0,
"y": 0
},
"data_input_associations": [],
"data_output_associations": [],
"main_child_task_spec": "task_2",
"typename": "_BoundaryEventParent"
},
"Event_1bkh7yi": {
"id": "migration_test_9",
"name": "Event_1bkh7yi",
"description": null,
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"task_2.BoundaryEventParent"
],
"outputs": [],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 592.0,
"y": 119.0
},
"data_input_associations": [],
"data_output_associations": [],
"event_definition": {
"internal": true,
"external": true,
"label": "Event_1bkh7yi",
"dateTime": "timedelta(seconds=0.1)",
"typename": "TimerEventDefinition"
},
"cancel_activity": true,
"typename": "BoundaryEvent",
"extensions": {}
},
"Event_1vzwq7p": {
"id": "migration_test_10",
"name": "Event_1vzwq7p",
"description": null,
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"task_2"
],
"outputs": [
"migration_test.EndJoin"
],
"lane": null,
"documentation": null,
"loopTask": false,
"position": {
"x": 742.0,
"y": 79.0
},
"data_input_associations": [],
"data_output_associations": [],
"event_definition": {
"internal": false,
"external": false,
"typename": "NoneEventDefinition"
},
"typename": "EndEvent",
"extensions": {}
},
"Root": {
"id": "migration_test_11",
"name": "Root",
"description": "",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [],
"outputs": [],
"typename": "Simple"
},
"return_to_StartEvent_1": {
"id": "migration_test_12",
"name": "return_to_StartEvent_1",
"description": "",
"manual": false,
"internal": false,
"lookahead": 2,
"inputs": [
"Start",
"StartEvent_1"
],
"outputs": [],
"destination_id": "34a70bb5-88f7-4a71-9dea-da6893437633",
"destination_spec_name": "StartEvent_1",
"typename": "LoopResetTask"
}
},
"data_inputs": [],
"data_outputs": [],
"data_objects": {},
"correlation_keys": {},
"typename": "BpmnProcessSpec"
},
"subprocess_specs": {},
"subprocesses": {},
"bpmn_messages": []
}

View File

@ -22,7 +22,7 @@
<bpmn:startEvent id="CycleStart">
<bpmn:outgoing>Flow_0jtfzsk</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0za5f2h">
<bpmn:timeCycle xsi:type="bpmn:tFormalExpression">(2,timedelta(seconds=0.1))</bpmn:timeCycle>
<bpmn:timeCycle xsi:type="bpmn:tFormalExpression">"R2/PT0.1S"</bpmn:timeCycle>
</bpmn:timerEventDefinition>
</bpmn:startEvent>
<bpmn:scriptTask id="Refill_Coffee" name="Refill Coffee">
@ -37,7 +37,7 @@
<bpmn:incoming>Flow_1pahvlr</bpmn:incoming>
<bpmn:outgoing>Flow_05ejbm4</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0o35ug0">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(seconds=0.5)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.5S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:endEvent id="EndItAll">

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ilr8m3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ilr8m3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="timer" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_1pahvlr</bpmn:outgoing>
@ -32,12 +32,32 @@
<bpmn:boundaryEvent id="CatchMessage" cancelActivity="false" attachedToRef="Get_Coffee">
<bpmn:outgoing>Flow_1pzc4jz</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_180fybf">
<bpmn:timeCycle xsi:type="bpmn:tFormalExpression">(2,timedelta(seconds=0.01))</bpmn:timeCycle>
<bpmn:timeCycle xsi:type="bpmn:tFormalExpression">"R2/PT0.1S"</bpmn:timeCycle>
</bpmn:timerEventDefinition>
</bpmn:boundaryEvent>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="timer">
<bpmndi:BPMNEdge id="Flow_09d7dp2_di" bpmnElement="Flow_09d7dp2">
<di:waypoint x="320" y="117" />
<di:waypoint x="370" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pzc4jz_di" bpmnElement="Flow_1pzc4jz">
<di:waypoint x="440" y="175" />
<di:waypoint x="440" y="210" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pahvlr_di" bpmnElement="Flow_1pahvlr">
<di:waypoint x="188" y="117" />
<di:waypoint x="220" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pvkgnu_di" bpmnElement="Flow_1pvkgnu">
<di:waypoint x="470" y="117" />
<di:waypoint x="500" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1ekgt3x_di" bpmnElement="Flow_1ekgt3x">
<di:waypoint x="600" y="117" />
<di:waypoint x="632" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="152" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
@ -50,29 +70,9 @@
<bpmndi:BPMNShape id="Event_03w65sk_di" bpmnElement="Event_03w65sk">
<dc:Bounds x="632" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1ekgt3x_di" bpmnElement="Flow_1ekgt3x">
<di:waypoint x="600" y="117" />
<di:waypoint x="632" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pvkgnu_di" bpmnElement="Flow_1pvkgnu">
<di:waypoint x="470" y="117" />
<di:waypoint x="500" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pahvlr_di" bpmnElement="Flow_1pahvlr">
<di:waypoint x="188" y="117" />
<di:waypoint x="220" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pzc4jz_di" bpmnElement="Flow_1pzc4jz">
<di:waypoint x="440" y="175" />
<di:waypoint x="440" y="210" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_0xk1ts7_di" bpmnElement="Refill_Coffee">
<dc:Bounds x="390" y="210" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_09d7dp2_di" bpmnElement="Flow_09d7dp2">
<di:waypoint x="320" y="117" />
<di:waypoint x="370" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1tk82xi_di" bpmnElement="Activity_1swqq74">
<dc:Bounds x="220" y="77" width="100" height="80" />
</bpmndi:BPMNShape>

View File

@ -1,17 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ilr8m3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ilr8m3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="date_timer" isExecutable="false">
<bpmn:startEvent id="Event_0u1rmur">
<bpmn:outgoing>Flow_1i73q45</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:scriptTask id="Activity_1q1wged" name="Set Future Date">
<bpmn:incoming>Flow_1i73q45</bpmn:incoming>
<bpmn:outgoing>Flow_00e79cz</bpmn:outgoing>
<bpmn:script>futuredate = datetime.now() + timedelta(0, 1) - timedelta(seconds=.95)
futuredate2 = datetime.strptime('2021-09-01 10:00','%Y-%m-%d %H:%M')</bpmn:script>
</bpmn:scriptTask>
<bpmn:sequenceFlow id="Flow_1i73q45" sourceRef="Event_0u1rmur" targetRef="Activity_1q1wged" />
<bpmn:sequenceFlow id="Flow_00e79cz" sourceRef="Activity_1q1wged" targetRef="Event_0eb0w95" />
<bpmn:intermediateCatchEvent id="Event_0eb0w95" name="Wait till date">
<bpmn:incoming>Flow_00e79cz</bpmn:incoming>
<bpmn:outgoing>Flow_1bdrcxy</bpmn:outgoing>
@ -19,54 +12,46 @@ futuredate2 = datetime.strptime('2021-09-01 10:00','%Y-%m-%d %H:%M')</bpmn:scrip
<bpmn:timeDate xsi:type="bpmn:tFormalExpression">futuredate</bpmn:timeDate>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_1bdrcxy" sourceRef="Event_0eb0w95" targetRef="Activity_0pbdlyu" />
<bpmn:scriptTask id="Activity_0pbdlyu" name="Do something">
<bpmn:incoming>Flow_1bdrcxy</bpmn:incoming>
<bpmn:outgoing>Flow_0bjksyv</bpmn:outgoing>
<bpmn:script>print('yay!')
completed = True</bpmn:script>
</bpmn:scriptTask>
<bpmn:sequenceFlow id="Flow_1bdrcxy" sourceRef="Event_0eb0w95" targetRef="Event_19cfzir" />
<bpmn:endEvent id="Event_19cfzir">
<bpmn:incoming>Flow_0bjksyv</bpmn:incoming>
<bpmn:incoming>Flow_1bdrcxy</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0bjksyv" sourceRef="Activity_0pbdlyu" targetRef="Event_19cfzir" />
<bpmn:scriptTask id="Activity_1q1wged" name="Set Future Date">
<bpmn:incoming>Flow_1i73q45</bpmn:incoming>
<bpmn:outgoing>Flow_00e79cz</bpmn:outgoing>
<bpmn:script>futuredate = (datetime.now() + timedelta(seconds=0.05)).isoformat()</bpmn:script>
</bpmn:scriptTask>
<bpmn:sequenceFlow id="Flow_00e79cz" sourceRef="Activity_1q1wged" targetRef="Event_0eb0w95" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="date_timer">
<bpmndi:BPMNEdge id="Flow_1bdrcxy_di" bpmnElement="Flow_1bdrcxy">
<di:waypoint x="408" y="120" />
<di:waypoint x="492" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_00e79cz_di" bpmnElement="Flow_00e79cz">
<di:waypoint x="320" y="120" />
<di:waypoint x="372" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1i73q45_di" bpmnElement="Flow_1i73q45">
<di:waypoint x="168" y="120" />
<di:waypoint x="220" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0u1rmur_di" bpmnElement="Event_0u1rmur">
<dc:Bounds x="132" y="102" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0dxzed7_di" bpmnElement="Activity_1q1wged">
<dc:Bounds x="220" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1i73q45_di" bpmnElement="Flow_1i73q45">
<di:waypoint x="168" y="120" />
<di:waypoint x="220" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_00e79cz_di" bpmnElement="Flow_00e79cz">
<di:waypoint x="320" y="120" />
<di:waypoint x="372" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0et6lvm_di" bpmnElement="Event_0eb0w95">
<dc:Bounds x="372" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="361" y="145" width="60" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1bdrcxy_di" bpmnElement="Flow_1bdrcxy">
<di:waypoint x="408" y="120" />
<di:waypoint x="460" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1g6jb6j_di" bpmnElement="Activity_0pbdlyu">
<dc:Bounds x="460" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_19cfzir_di" bpmnElement="Event_19cfzir">
<dc:Bounds x="612" y="102" width="36" height="36" />
<dc:Bounds x="492" y="102" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0bjksyv_di" bpmnElement="Flow_0bjksyv">
<di:waypoint x="560" y="120" />
<di:waypoint x="612" y="120" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0wc03ht" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0wc03ht" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="NonInterruptTimer" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_1hyztad</bpmn:outgoing>
@ -38,7 +38,7 @@
<bpmn:boundaryEvent id="Event_0jyy8ao" name="BenchmarkTime" cancelActivity="false" attachedToRef="Activity_0e5qk4z">
<bpmn:outgoing>Flow_03e1mfr</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_15a4lk2">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(seconds=.2)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.2S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:boundaryEvent>
<bpmn:userTask id="GetReason" name="Delay Reason" camunda:formKey="DelayForm">
@ -59,74 +59,46 @@
<bpmn:incoming>Flow_0tlkkap</bpmn:incoming>
<bpmn:outgoing>Flow_0vper9q</bpmn:outgoing>
</bpmn:parallelGateway>
<bpmn:sequenceFlow id="Flow_0vper9q" sourceRef="Gateway_19fdoel" targetRef="Experience" />
<bpmn:sequenceFlow id="Flow_0vper9q" sourceRef="Gateway_19fdoel" targetRef="Event_17ly1lc" />
<bpmn:endEvent id="Event_17ly1lc">
<bpmn:incoming>Flow_0or6odg</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0or6odg" sourceRef="Experience" targetRef="Event_17ly1lc" />
<bpmn:userTask id="Experience" name="What was your work Experience?" camunda:formKey="ExpForm">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="experience" label="What was your Work Experience?" type="string" />
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0vper9q</bpmn:incoming>
<bpmn:outgoing>Flow_0or6odg</bpmn:outgoing>
</bpmn:userTask>
</bpmn:endEvent>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="NonInterruptTimer">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="112" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0e5qk4z_di" bpmnElement="Activity_0e5qk4z" isExpanded="true">
<dc:Bounds x="210" y="77" width="530" height="200" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0rpm2hw_di" bpmnElement="Event_0rpm2hw">
<dc:Bounds x="242" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0neqjqa_di" bpmnElement="Event_0jyy8ao">
<dc:Bounds x="572" y="259" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="551" y="302" width="80" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_09w3ybl_di" bpmnElement="GetReason">
<dc:Bounds x="540" y="350" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1hyztad_di" bpmnElement="Flow_1hyztad">
<di:waypoint x="148" y="177" />
<di:waypoint x="210" y="177" />
<bpmndi:BPMNEdge id="Flow_0vper9q_di" bpmnElement="Flow_0vper9q">
<di:waypoint x="835" y="177" />
<di:waypoint x="992" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_07l1pau_di" bpmnElement="Flow_07l1pau">
<di:waypoint x="740" y="177" />
<di:waypoint x="785" y="177" />
<bpmndi:BPMNEdge id="Flow_03e1mfr_di" bpmnElement="Flow_03e1mfr">
<di:waypoint x="590" y="295" />
<di:waypoint x="590" y="350" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0tlkkap_di" bpmnElement="Flow_0tlkkap">
<di:waypoint x="640" y="390" />
<di:waypoint x="810" y="390" />
<di:waypoint x="810" y="202" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_03e1mfr_di" bpmnElement="Flow_03e1mfr">
<di:waypoint x="590" y="295" />
<di:waypoint x="590" y="350" />
<bpmndi:BPMNEdge id="Flow_07l1pau_di" bpmnElement="Flow_07l1pau">
<di:waypoint x="740" y="177" />
<di:waypoint x="785" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1ls93l9_di" bpmnElement="Flow_1ls93l9">
<di:waypoint x="278" y="177" />
<di:waypoint x="320" y="177" />
<bpmndi:BPMNEdge id="Flow_1hyztad_di" bpmnElement="Flow_1hyztad">
<di:waypoint x="148" y="177" />
<di:waypoint x="210" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Gateway_1qxx57d_di" bpmnElement="Gateway_WorkDone" isMarkerVisible="true">
<dc:Bounds x="495" y="152" width="50" height="50" />
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="112" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0e5qk4z_di" bpmnElement="Activity_0e5qk4z" isExpanded="true">
<dc:Bounds x="210" y="77" width="530" height="200" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_10bimyk_di" bpmnElement="Flow_10bimyk">
<di:waypoint x="545" y="177" />
<di:waypoint x="602" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="495" y="122" width="51" height="14" />
<dc:Bounds x="564" y="159" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_12d9rs0_di" bpmnElement="Gateway_19fdoel">
<dc:Bounds x="785" y="152" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1ku6me6_di" bpmnElement="Flow_1ku6me6">
<di:waypoint x="420" y="177" />
<di:waypoint x="495" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_06jd2h7_di" bpmnElement="Flow_06jd2h7">
<di:waypoint x="520" y="202" />
@ -137,32 +109,43 @@
<dc:Bounds x="438" y="232" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1ku6me6_di" bpmnElement="Flow_1ku6me6">
<di:waypoint x="420" y="177" />
<di:waypoint x="495" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1ls93l9_di" bpmnElement="Flow_1ls93l9">
<di:waypoint x="278" y="177" />
<di:waypoint x="320" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0rpm2hw_di" bpmnElement="Event_0rpm2hw">
<dc:Bounds x="242" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1qxx57d_di" bpmnElement="Gateway_WorkDone" isMarkerVisible="true">
<dc:Bounds x="495" y="152" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="495" y="122" width="51" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1sxw3jz_di" bpmnElement="Event_1sxw3jz">
<dc:Bounds x="602" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_10bimyk_di" bpmnElement="Flow_10bimyk">
<di:waypoint x="545" y="177" />
<di:waypoint x="602" y="177" />
<bpmndi:BPMNLabel>
<dc:Bounds x="564" y="159" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1ax46dw_di" bpmnElement="Activity_Work">
<dc:Bounds x="320" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0vper9q_di" bpmnElement="Flow_0vper9q">
<di:waypoint x="835" y="177" />
<di:waypoint x="860" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_09w3ybl_di" bpmnElement="GetReason">
<dc:Bounds x="540" y="350" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_12d9rs0_di" bpmnElement="Gateway_19fdoel">
<dc:Bounds x="785" y="152" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_17ly1lc_di" bpmnElement="Event_17ly1lc">
<dc:Bounds x="992" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0or6odg_di" bpmnElement="Flow_0or6odg">
<di:waypoint x="960" y="177" />
<di:waypoint x="992" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_130382b_di" bpmnElement="Experience">
<dc:Bounds x="860" y="137" width="100" height="80" />
<bpmndi:BPMNShape id="Event_0neqjqa_di" bpmnElement="Event_0jyy8ao">
<dc:Bounds x="572" y="259" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="551" y="302" width="80" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>

View File

@ -1,68 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ilr8m3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ilr8m3" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="timer" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_1pahvlr</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:manualTask id="Activity_1ybpou3" name="Get Coffee">
<bpmn:incoming>Flow_1pahvlr</bpmn:incoming>
<bpmn:outgoing>Flow_1pvkgnu</bpmn:outgoing>
</bpmn:manualTask>
<bpmn:intermediateCatchEvent id="Event_0bxivgz" name="Take 5">
<bpmn:incoming>Flow_1pvkgnu</bpmn:incoming>
<bpmn:incoming>Flow_1pahvlr</bpmn:incoming>
<bpmn:outgoing>Flow_1elbn9u</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_1jrn73k">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(seconds=.25)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.25S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:manualTask id="Activity_1rbj8j1" name="Get Back To Work">
<bpmn:incoming>Flow_1elbn9u</bpmn:incoming>
<bpmn:outgoing>Flow_1ekgt3x</bpmn:outgoing>
</bpmn:manualTask>
<bpmn:endEvent id="Event_03w65sk">
<bpmn:incoming>Flow_1ekgt3x</bpmn:incoming>
<bpmn:incoming>Flow_1elbn9u</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1ekgt3x" sourceRef="Activity_1rbj8j1" targetRef="Event_03w65sk" />
<bpmn:sequenceFlow id="Flow_1elbn9u" sourceRef="Event_0bxivgz" targetRef="Activity_1rbj8j1" />
<bpmn:sequenceFlow id="Flow_1pvkgnu" sourceRef="Activity_1ybpou3" targetRef="Event_0bxivgz" />
<bpmn:sequenceFlow id="Flow_1pahvlr" sourceRef="StartEvent_1" targetRef="Activity_1ybpou3" />
<bpmn:sequenceFlow id="Flow_1elbn9u" sourceRef="Event_0bxivgz" targetRef="Event_03w65sk" />
<bpmn:sequenceFlow id="Flow_1pahvlr" sourceRef="StartEvent_1" targetRef="Event_0bxivgz" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="timer">
<bpmndi:BPMNEdge id="Flow_1pahvlr_di" bpmnElement="Flow_1pahvlr">
<di:waypoint x="215" y="117" />
<di:waypoint x="262" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1elbn9u_di" bpmnElement="Flow_1elbn9u">
<di:waypoint x="298" y="117" />
<di:waypoint x="342" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0tjl9dd_di" bpmnElement="Activity_1ybpou3">
<dc:Bounds x="260" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0bljn9v_di" bpmnElement="Event_0bxivgz">
<dc:Bounds x="412" y="99" width="36" height="36" />
<dc:Bounds x="262" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="414" y="142" width="33" height="14" />
<dc:Bounds x="264" y="142" width="33" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_15zi5m4_di" bpmnElement="Activity_1rbj8j1">
<dc:Bounds x="530" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_03w65sk_di" bpmnElement="Event_03w65sk">
<dc:Bounds x="682" y="99" width="36" height="36" />
<dc:Bounds x="342" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1ekgt3x_di" bpmnElement="Flow_1ekgt3x">
<di:waypoint x="630" y="117" />
<di:waypoint x="682" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1elbn9u_di" bpmnElement="Flow_1elbn9u">
<di:waypoint x="448" y="117" />
<di:waypoint x="530" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pvkgnu_di" bpmnElement="Flow_1pvkgnu">
<di:waypoint x="360" y="117" />
<di:waypoint x="412" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1pahvlr_di" bpmnElement="Flow_1pahvlr">
<di:waypoint x="215" y="117" />
<di:waypoint x="260" y="117" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_d4f3442" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.10.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_d4f3442" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="loops" isExecutable="true">
<bpmn:scriptTask id="increment_counter" name="increment counter">
<bpmn:incoming>Flow_1gb8wca</bpmn:incoming>
@ -25,7 +25,7 @@ Days elapsed: {{days_delta }}</bpmn:documentation>
<bpmn:incoming>Flow_0op1a19</bpmn:incoming>
<bpmn:outgoing>Flow_1gb8wca</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0x6divu">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(milliseconds=10)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT.01S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:exclusiveGateway id="Gateway_over_20" name="is &#62; 20">
@ -57,6 +57,14 @@ Days elapsed: {{days_delta }}</bpmn:documentation>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="loops">
<bpmndi:BPMNEdge id="Flow_0q7fkb7_di" bpmnElement="Flow_0q7fkb7">
<di:waypoint x="188" y="177" />
<di:waypoint x="250" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0mxlkif_di" bpmnElement="Flow_0mxlkif">
<di:waypoint x="720" y="177" />
<di:waypoint x="755" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_15jw6a4_di" bpmnElement="Flow_15jw6a4">
<di:waypoint x="350" y="177" />
<di:waypoint x="412" y="177" />
@ -85,16 +93,8 @@ Days elapsed: {{days_delta }}</bpmn:documentation>
<di:waypoint x="580" y="177" />
<di:waypoint x="620" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0q7fkb7_di" bpmnElement="Flow_0q7fkb7">
<di:waypoint x="188" y="177" />
<di:waypoint x="250" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0mxlkif_di" bpmnElement="Flow_0mxlkif">
<di:waypoint x="720" y="177" />
<di:waypoint x="755" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="152" y="159" width="36" height="36" />
<bpmndi:BPMNShape id="Activity_1fgfg5d_di" bpmnElement="increment_counter">
<dc:Bounds x="480" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1tseamj_di" bpmnElement="end_event5">
<dc:Bounds x="932" y="159" width="36" height="36" />
@ -114,12 +114,12 @@ Days elapsed: {{days_delta }}</bpmn:documentation>
<bpmndi:BPMNShape id="Activity_0whalo9_di" bpmnElement="initialize">
<dc:Bounds x="250" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1fgfg5d_di" bpmnElement="increment_counter">
<dc:Bounds x="480" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0mmgsiw_di" bpmnElement="Activity_0w5u4k4">
<dc:Bounds x="620" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="152" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_d4f3442" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.10.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_d4f3442" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="loops_sub" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_0q7fkb7</bpmn:outgoing>
@ -29,7 +29,7 @@ Days elapsed: {{days_delta }}</bpmn:documentation>
<bpmn:incoming>Flow_1ivr6d7</bpmn:incoming>
<bpmn:outgoing>Flow_1gb8wca</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0x6divu">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(milliseconds=10)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.01S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:exclusiveGateway id="Gateway_over_20" name="is &#62; 20">

View File

@ -15,7 +15,7 @@ class ActionManagementTest(BpmnWorkflowTestCase):
FINISH_TIME_DELTA=0.10
def now_plus_seconds(self, seconds):
return datetime.datetime.now() + datetime.timedelta(seconds=seconds)
return (datetime.datetime.now() + datetime.timedelta(seconds=seconds)).isoformat()
def setUp(self):
self.spec, self.subprocesses = self.load_workflow_spec('Test-Workflows/Action-Management.bpmn20.xml', 'Action Management')

View File

@ -0,0 +1,60 @@
import unittest
from datetime import datetime
from SpiffWorkflow.bpmn.specs.events.event_definitions import TimerEventDefinition
class TimeDurationParseTest(unittest.TestCase):
"Non-exhaustive ISO durations, but hopefully covers basic support"
def test_parse_duration(self):
valid = [
("P1Y6M1DT1H1M1S", {'years': 1, 'months': 6, 'days': 1, 'hours': 1, 'minutes': 1, 'seconds': 1 }), # everything
("P1Y6M1DT1H1M1.5S", {'years': 1, 'months': 6, 'days': 1, 'hours': 1, 'minutes': 1, 'seconds': 1.5 }), # fractional seconds
("P1YT1H1M1S", {'years': 1, 'hours': 1, 'minutes': 1, 'seconds': 1 }), # minutes but no month
("P1MT1H", {'months': 1, 'hours':1}), # months but no minutes
("P4W", {'weeks': 4}), # weeks
("P1Y6M1D", {'years': 1, 'months': 6, 'days': 1}), # no time
("PT1H1M1S", {'hours': 1,'minutes': 1,'seconds': 1}), # time only
("PT1.5H", {'hours': 1.5}), # alt fractional
("T1,5H", {'hours': 1.5}), # fractional with comma
("PDT1H1M1S", {'hours': 1, 'minutes': 1, 'seconds': 1}), # empty spec
("PYMDT1H1M1S", {'hours': 1, 'minutes': 1, 'seconds': 1}), # multiple empty
]
for duration, parsed_duration in valid:
result = TimerEventDefinition.parse_iso_duration(duration)
self.assertDictEqual(result, parsed_duration)
invalid = [
"PT1.5H30S", # fractional duration with subsequent non-fractional
"PT1,5H30S", # with comma
"P1H1M1S", # missing 't'
"P1DT", # 't' without time spec
"P1W1D", # conflicting day specs
"PT1H1M1", # trailing values
]
for duration in invalid:
self.assertRaises(Exception, TimerEventDefinition.parse_iso_duration, duration)
def test_calculate_timedelta_from_start(self):
start, one_day = datetime.fromisoformat("2023-01-01"), 24 * 3600
# Leap years
self.assertEqual(TimerEventDefinition.get_timedelta_from_start({'years': 1}, start).total_seconds(), 365 * one_day)
self.assertEqual(TimerEventDefinition.get_timedelta_from_start({'years': 2}, start).total_seconds(), (365 + 366) * one_day)
# Increment by month does not change day
for month in range(1, 13):
dt = start + TimerEventDefinition.get_timedelta_from_start({'months': month}, start)
self.assertEqual(dt.day, 1)
def test_calculate_timedelta_from_end(self):
end, one_day = datetime.fromisoformat("2025-01-01"), 24 * 3600
# Leap years
self.assertEqual(TimerEventDefinition.get_timedelta_from_end({'years': 1}, end).total_seconds(), 366 * one_day)
self.assertEqual(TimerEventDefinition.get_timedelta_from_end({'years': 2}, end).total_seconds(), (365 + 366) * one_day)
dt = end - TimerEventDefinition.get_timedelta_from_end({'months': 11}, end)
# Decrement by month does not change day
for month in range(1, 13):
dt = end - TimerEventDefinition.get_timedelta_from_end({'months': month}, end)
self.assertEqual(dt.day, 1)

View File

@ -5,12 +5,14 @@ import unittest
import time
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
__author__ = 'kellym'
# the data doesn't really propagate to the end as in a 'normal' workflow, so I call a
# custom function that records the number of times this got called so that
# we can keep track of how many times the triggered item gets called.
counter = 0
def my_custom_function():
global counter
@ -41,31 +43,24 @@ class TimerCycleStartTest(BpmnWorkflowTestCase):
def testThroughSaveRestore(self):
self.actual_test(save_restore=True)
def actual_test(self,save_restore = False):
global counter
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks)) # Start Event
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
# the data doesn't really propagate to the end as in a 'normal' workflow, so I call a
# custom function that records the number of times this got called so that
# we can keep track of how many times the triggered item gets called.
counter = 0
# We have a loop so we can continue to execute waiting tasks when
# timers expire. The test workflow has a wait timer that pauses long enough to
# allow the cycle to complete twice -- otherwise the first iteration through the
# cycle process causes the remaining tasks to be cancelled.
for loopcount in range(5):
# allow the cycle to complete three times before being cancelled by the terminate
# event (the timer should only run twice, we want to make sure it doesn't keep
# executing)
for loopcount in range(6):
self.workflow.do_engine_steps()
if save_restore:
self.save_restore()
self.workflow.script_engine = CustomScriptEngine()
time.sleep(0.1)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
self.assertEqual(counter, 2)
self.assertTrue(self.workflow.is_completed())
def suite():

View File

@ -30,7 +30,7 @@ class CustomScriptEngine(PythonScriptEngine):
class TimerDurationTest(BpmnWorkflowTestCase):
class TimerCycleTest(BpmnWorkflowTestCase):
def setUp(self):
self.spec, self.subprocesses = self.load_workflow_spec('timer-cycle.bpmn', 'timer')
@ -42,31 +42,34 @@ class TimerDurationTest(BpmnWorkflowTestCase):
def testThroughSaveRestore(self):
self.actual_test(save_restore=True)
def actual_test(self,save_restore = False):
global counter
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks)) # Start Event
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks)) # GetCoffee
# See comments in timer cycle test for more context
counter = 0
# See comments in timer cycle test start for more context
for loopcount in range(5):
self.workflow.do_engine_steps()
if save_restore:
self.save_restore()
self.workflow.script_engine = CustomScriptEngine()
time.sleep(0.01)
time.sleep(0.05)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
pass
#self.assertEqual(counter, 2)
events = self.workflow.waiting_events()
if loopcount == 0:
# Wait time is 0.1s, so the first time through, there should still be a waiting event
self.assertEqual(len(events), 1)
else:
# By the second iteration, both should be complete
self.assertEqual(len(events), 0)
# Get coffee still ready
coffee = self.workflow.get_tasks_from_spec_name('Get_Coffee')[0]
self.assertEqual(coffee.state, TaskState.READY)
# Timer completed
timer = self.workflow.get_tasks_from_spec_name('CatchMessage')[0]
self.assertEqual(timer.state, TaskState.COMPLETED)
self.assertEqual(counter, 2)
def suite():
return unittest.TestLoader().loadTestsFromTestCase(TimerDurationTest)
return unittest.TestLoader().loadTestsFromTestCase(TimerCycleTest)
if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite())

View File

@ -4,7 +4,6 @@ import unittest
import datetime
import time
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
@ -28,37 +27,22 @@ class TimerDateTest(BpmnWorkflowTestCase):
def testThroughSaveRestore(self):
self.actual_test(save_restore=True)
def actual_test(self,save_restore = False):
global counter
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks)) # Start Event
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
self.assertEqual(len(self.workflow.waiting_events()), 1)
loopcount = 0
# test bpmn has a timeout of .05s
# we should terminate loop before that.
starttime = datetime.datetime.now()
counter = 0
while loopcount < 8:
if len(self.workflow.get_tasks(TaskState.READY)) >= 1:
break
# test bpmn has a timeout of .05s; we should terminate loop before that.
while len(self.workflow.get_waiting_tasks()) > 0 and loopcount < 8:
if save_restore:
self.save_restore()
self.workflow.script_engine = self.script_engine
waiting_tasks = self.workflow.get_tasks(TaskState.WAITING)
time.sleep(0.01)
self.workflow.refresh_waiting_tasks()
loopcount = loopcount +1
loopcount += 1
endtime = datetime.datetime.now()
self.workflow.do_engine_steps()
testdate = datetime.datetime.strptime('2021-09-01 10:00','%Y-%m-%d %H:%M')
self.assertEqual(self.workflow.last_task.data['futuredate2'],testdate)
self.assertTrue('completed' in self.workflow.last_task.data)
self.assertTrue(self.workflow.last_task.data['completed'])
self.assertTrue(self.workflow.is_completed())
self.assertTrue((endtime-starttime) > datetime.timedelta(seconds=.02))

View File

@ -1,12 +1,9 @@
# -*- coding: utf-8 -*-
import unittest
import datetime
import time
from datetime import timedelta
from SpiffWorkflow.bpmn.specs.events.EndEvent import EndEvent
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
@ -27,45 +24,23 @@ class TimerDurationTest(BpmnWorkflowTestCase):
self.actual_test(save_restore=True)
def actual_test(self,save_restore = False):
# In the normal flow of things, the final end event should be the last task
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
self.assertTrue(self.workflow.is_completed())
end_events = []
for task in self.workflow.get_tasks():
if isinstance(task.task_spec, EndEvent):
end_events.append(task)
self.assertEqual(1, len(end_events))
# In the event of a timer firing, the last task should STILL
# be the final end event.
starttime = datetime.datetime.now()
self.workflow = BpmnWorkflow(self.spec)
self.workflow.script_engine = self.script_engine
self.workflow.do_engine_steps()
if save_restore:
self.save_restore()
self.workflow.script_engine = self.script_engine
time.sleep(0.1)
time.sleep(1)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
# Make sure the timer got called
self.assertEqual(self.workflow.last_task.data['timer_called'],True)
# Make sure the task can still be called.
task = self.workflow.get_ready_user_tasks()[0]
self.workflow.complete_task_from_id(task.id)
task.complete()
self.workflow.do_engine_steps()
self.assertTrue(self.workflow.is_completed())
end_events = []
for task in self.workflow.get_tasks():
if isinstance(task.task_spec, EndEvent):
end_events.append(task)
self.assertEqual(1, len(end_events))
def suite():

View File

@ -3,7 +3,6 @@
import unittest
import time
from SpiffWorkflow.bpmn.FeelLikeScriptEngine import FeelLikeScriptEngine
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
@ -23,35 +22,31 @@ class TimerDurationTest(BpmnWorkflowTestCase):
self.actual_test(save_restore=True)
def actual_test(self,save_restore = False):
self.workflow.script_engine = FeelLikeScriptEngine()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
ready_tasks[0].data['answer']='No'
self.workflow.complete_task_from_id(ready_tasks[0].id)
ready_tasks[0].complete()
self.workflow.do_engine_steps()
loopcount = 0
# test bpmn has a timeout of .03s
# we should terminate loop before that.
while loopcount < 11:
ready_tasks = self.workflow.get_tasks(TaskState.READY)
if len(ready_tasks) < 1:
break
# test bpmn has a timeout of .03s; we should terminate loop before that.
while len(self.workflow.get_waiting_tasks()) == 2 and loopcount < 11:
if save_restore:
self.save_restore()
self.workflow.script_engine = FeelLikeScriptEngine()
#self.assertEqual(1, len(self.workflow.get_tasks(Task.WAITING)))
time.sleep(0.01)
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.assertEqual(len(self.workflow.get_tasks(TaskState.READY)), 1)
self.workflow.refresh_waiting_tasks()
self.workflow.do_engine_steps()
loopcount = loopcount +1
loopcount += 1
self.workflow.do_engine_steps()
subworkflow = self.workflow.get_tasks_from_spec_name('Subworkflow')[0]
self.assertEqual(subworkflow.state, TaskState.CANCELLED)
ready_tasks = self.workflow.get_ready_user_tasks()
while len(ready_tasks) > 0:
ready_tasks[0].complete()
ready_tasks = self.workflow.get_ready_user_tasks()
self.workflow.do_engine_steps()
self.assertTrue(self.workflow.is_completed())
# Assure that the loopcount is less than 10, and the timer interrupt fired, rather
# than allowing us to continue to loop the full 10 times.
self.assertTrue(loopcount < 10)

View File

@ -1,10 +1,8 @@
# -*- coding: utf-8 -*-
import unittest
import datetime
import time
from datetime import timedelta
from SpiffWorkflow.task import TaskState
from datetime import datetime, timedelta
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
@ -25,35 +23,25 @@ class TimerDurationTest(BpmnWorkflowTestCase):
def testThroughSaveRestore(self):
self.actual_test(save_restore=True)
def actual_test(self,save_restore = False):
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_tasks(TaskState.READY)
self.assertEqual(1, len(ready_tasks))
self.workflow.complete_task_from_id(ready_tasks[0].id)
self.workflow.do_engine_steps()
self.assertEqual(len(self.workflow.waiting_events()), 1)
loopcount = 0
# test bpmn has a timeout of .25s
# we should terminate loop before that.
starttime = datetime.datetime.now()
while loopcount < 10:
if len(self.workflow.get_tasks(TaskState.READY)) >= 1:
break
starttime = datetime.now()
# test bpmn has a timeout of .25s; we should terminate loop before that.
while len(self.workflow.get_waiting_tasks()) > 0 and loopcount < 10:
if save_restore:
self.save_restore()
self.workflow.script_engine = self.script_engine
self.assertEqual(1, len(self.workflow.get_tasks(TaskState.WAITING)))
time.sleep(0.1)
self.workflow.refresh_waiting_tasks()
loopcount = loopcount +1
endtime = datetime.datetime.now()
duration = endtime-starttime
self.assertEqual(duration<datetime.timedelta(seconds=.5),True)
self.assertEqual(duration>datetime.timedelta(seconds=.2),True)
loopcount += 1
endtime = datetime.now()
duration = endtime - starttime
self.assertEqual(duration < timedelta(seconds=.5), True)
self.assertEqual(duration > timedelta(seconds=.2), True)
self.assertEqual(len(self.workflow.waiting_events()), 0)
def suite():

View File

@ -18,7 +18,7 @@ class TimerIntermediateTest(BpmnWorkflowTestCase):
def testRunThroughHappy(self):
due_time = datetime.datetime.now() + datetime.timedelta(seconds=0.01)
due_time = (datetime.datetime.now() + datetime.timedelta(seconds=0.01)).isoformat()
self.assertEqual(1, len(self.workflow.get_tasks(TaskState.READY)))
self.workflow.get_tasks(TaskState.READY)[0].set_data(due_time=due_time)

View File

@ -0,0 +1,27 @@
import unittest
import os
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from SpiffWorkflow.bpmn.parser.BpmnParser import BpmnParser
from SpiffWorkflow.bpmn.serializer.workflow import BpmnWorkflowSerializer
from tests.SpiffWorkflow.bpmn.BpmnLoaderForTests import TestUserTaskConverter
class BaseTestCase(unittest.TestCase):
SERIALIZER_VERSION = "100.1.ANY"
DATA_DIR = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data')
def load_workflow_spec(self, filename, process_name):
parser = BpmnParser()
parser.add_bpmn_files_by_glob(os.path.join(self.DATA_DIR, filename))
top_level_spec = parser.get_spec(process_name)
subprocesses = parser.get_subprocess_specs(process_name)
return top_level_spec, subprocesses
def setUp(self):
super(BaseTestCase, self).setUp()
wf_spec_converter = BpmnWorkflowSerializer.configure_workflow_spec_converter([TestUserTaskConverter])
self.serializer = BpmnWorkflowSerializer(wf_spec_converter, version=self.SERIALIZER_VERSION)
spec, subprocesses = self.load_workflow_spec('random_fact.bpmn', 'random_fact')
self.workflow = BpmnWorkflow(spec, subprocesses)

View File

@ -1,33 +1,18 @@
import os
import unittest
import os
import json
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from SpiffWorkflow.bpmn.parser.BpmnParser import BpmnParser
from SpiffWorkflow.bpmn.serializer.workflow import BpmnWorkflowSerializer
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
from tests.SpiffWorkflow.bpmn.BpmnLoaderForTests import TestUserTaskConverter
from .BaseTestCase import BaseTestCase
class BpmnWorkflowSerializerTest(BaseTestCase):
class BpmnWorkflowSerializerTest(unittest.TestCase):
"""Please note that the BpmnSerializer is Deprecated."""
SERIALIZER_VERSION = "100.1.ANY"
def load_workflow_spec(self, filename, process_name):
f = os.path.join(os.path.dirname(__file__), 'data', filename)
parser = BpmnParser()
parser.add_bpmn_files_by_glob(f)
top_level_spec = parser.get_spec(process_name)
subprocesses = parser.get_subprocess_specs(process_name)
return top_level_spec, subprocesses
def setUp(self):
super(BpmnWorkflowSerializerTest, self).setUp()
wf_spec_converter = BpmnWorkflowSerializer.configure_workflow_spec_converter([TestUserTaskConverter])
self.serializer = BpmnWorkflowSerializer(wf_spec_converter, version=self.SERIALIZER_VERSION)
spec, subprocesses = self.load_workflow_spec('random_fact.bpmn', 'random_fact')
self.workflow = BpmnWorkflow(spec, subprocesses)
DATA_DIR = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data')
def testSerializeWorkflowSpec(self):
spec_serialized = self.serializer.serialize_json(self.workflow)
@ -102,12 +87,6 @@ class BpmnWorkflowSerializerTest(unittest.TestCase):
def testDeserializeWorkflow(self):
self._compare_with_deserialized_copy(self.workflow)
def testSerializeTask(self):
self.serializer.serialize_json(self.workflow)
def testDeserializeTask(self):
self._compare_with_deserialized_copy(self.workflow)
def testDeserializeActiveWorkflow(self):
self.workflow.do_engine_steps()
self._compare_with_deserialized_copy(self.workflow)
@ -161,17 +140,6 @@ class BpmnWorkflowSerializerTest(unittest.TestCase):
self.assertIsNotNone(wf2.last_task)
self._compare_workflows(self.workflow, wf2)
def test_convert_1_0_to_1_1(self):
# The serialization used here comes from NestedSubprocessTest saved at line 25 with version 1.0
fn = os.path.join(os.path.dirname(__file__), 'data', 'serialization', 'v1.0.json')
wf = self.serializer.deserialize_json(open(fn).read())
# We should be able to finish the workflow from this point
ready_tasks = wf.get_tasks(TaskState.READY)
self.assertEqual('Action3', ready_tasks[0].task_spec.description)
ready_tasks[0].complete()
wf.do_engine_steps()
self.assertEqual(True, wf.is_completed())
def test_serialize_workflow_where_script_task_includes_function(self):
self.workflow.do_engine_steps()
ready_tasks = self.workflow.get_ready_user_tasks()

View File

@ -0,0 +1,30 @@
import os
import time
from SpiffWorkflow.task import TaskState
from SpiffWorkflow.bpmn.PythonScriptEngine import PythonScriptEngine
from .BaseTestCase import BaseTestCase
class VersionMigrationTest(BaseTestCase):
SERIALIZER_VERSION = "1.2"
def test_convert_1_0_to_1_1(self):
# The serialization used here comes from NestedSubprocessTest saved at line 25 with version 1.0
fn = os.path.join(self.DATA_DIR, 'serialization', 'v1.0.json')
wf = self.serializer.deserialize_json(open(fn).read())
# We should be able to finish the workflow from this point
ready_tasks = wf.get_tasks(TaskState.READY)
self.assertEqual('Action3', ready_tasks[0].task_spec.description)
ready_tasks[0].complete()
wf.do_engine_steps()
self.assertEqual(True, wf.is_completed())
def test_convert_1_1_to_1_2(self):
fn = os.path.join(self.DATA_DIR, 'serialization', 'v1-1.json')
wf = self.serializer.deserialize_json(open(fn).read())
wf.script_engine = PythonScriptEngine(default_globals={"time": time})
wf.refresh_waiting_tasks()
wf.do_engine_steps()
self.assertTrue(wf.is_completed())

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ucc3vj" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_0ucc3vj" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:collaboration id="Collaboration_0fh00ao">
<bpmn:participant id="Participant_1p8gtyd" name="Sample Process&#10;" processRef="Process_1kjyavs" />
</bpmn:collaboration>
@ -78,7 +78,7 @@
<bpmn:incoming>Flow_11u0pgk</bpmn:incoming>
<bpmn:outgoing>Flow_1rqk2v9</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0bct7zl">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">timedelta(seconds=.01)</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">"PT0.01S"</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_1gs89vo" sourceRef="Event_0akpdke" targetRef="Activity_106f08z" />
@ -107,48 +107,29 @@
<bpmndi:BPMNShape id="Participant_1p8gtyd_di" bpmnElement="Participant_1p8gtyd" isHorizontal="true">
<dc:Bounds x="190" y="70" width="978" height="638" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Lane_0rpib5y_di" bpmnElement="Lane_0rpib5y" isHorizontal="true">
<dc:Bounds x="220" y="70" width="948" height="202" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Lane_0gfw5kf_di" bpmnElement="Lane_0gfw5kf" isHorizontal="true">
<dc:Bounds x="220" y="272" width="948" height="436" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0d3xq5q_di" bpmnElement="Event_0d3xq5q">
<dc:Bounds x="292" y="152" width="36" height="36" />
<bpmndi:BPMNShape id="Lane_0rpib5y_di" bpmnElement="Lane_0rpib5y" isHorizontal="true">
<dc:Bounds x="220" y="70" width="948" height="202" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0bvln2b_di" bpmnElement="Flow_0bvln2b">
<di:waypoint x="328" y="170" />
<di:waypoint x="380" y="170" />
<bpmndi:BPMNEdge id="Flow_093roev_di" bpmnElement="Flow_093roev">
<di:waypoint x="645" y="360" />
<di:waypoint x="645" y="310" />
<di:waypoint x="1050" y="310" />
<di:waypoint x="1050" y="442" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1ugbw2a_di" bpmnElement="Activity_Interrupt">
<dc:Bounds x="380" y="130" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0ncff13_di" bpmnElement="Gateway_0ncff13" isMarkerVisible="true">
<dc:Bounds x="535" y="145" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1ya6ran_di" bpmnElement="Flow_1ya6ran">
<di:waypoint x="480" y="170" />
<di:waypoint x="535" y="170" />
<bpmndi:BPMNEdge id="Flow_0o0l113_di" bpmnElement="Flow_0o0l113">
<di:waypoint x="797" y="578" />
<di:waypoint x="797" y="630" />
<di:waypoint x="1050" y="630" />
<di:waypoint x="1050" y="478" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0saykw5_di" bpmnElement="Flow_0saykw5">
<di:waypoint x="585" y="170" />
<di:waypoint x="642" y="170" />
<bpmndi:BPMNLabel>
<dc:Bounds x="604" y="152" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_15z0u0c_di" bpmnElement="Event_0g8w85g">
<dc:Bounds x="642" y="152" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="625" y="195" width="70" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0l8sadb_di" bpmnElement="Event_0l8sadb">
<dc:Bounds x="742" y="152" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0lekhj5_di" bpmnElement="Flow_0lekhj5">
<di:waypoint x="678" y="170" />
<di:waypoint x="742" y="170" />
<bpmndi:BPMNEdge id="Flow_1gd7a2h_di" bpmnElement="Flow_1gd7a2h">
<di:waypoint x="328" y="430" />
<di:waypoint x="339" y="430" />
<di:waypoint x="339" y="460" />
<di:waypoint x="350" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1t2ocwk_di" bpmnElement="Flow_1t2ocwk">
<di:waypoint x="560" y="195" />
@ -159,76 +140,52 @@
<dc:Bounds x="488" y="232" width="15" height="40" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0lekhj5_di" bpmnElement="Flow_0lekhj5">
<di:waypoint x="678" y="170" />
<di:waypoint x="742" y="170" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0saykw5_di" bpmnElement="Flow_0saykw5">
<di:waypoint x="585" y="170" />
<di:waypoint x="642" y="170" />
<bpmndi:BPMNLabel>
<dc:Bounds x="604" y="152" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1ya6ran_di" bpmnElement="Flow_1ya6ran">
<di:waypoint x="480" y="170" />
<di:waypoint x="535" y="170" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0bvln2b_di" bpmnElement="Flow_0bvln2b">
<di:waypoint x="328" y="170" />
<di:waypoint x="380" y="170" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0d3xq5q_di" bpmnElement="Event_0d3xq5q">
<dc:Bounds x="292" y="152" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1ugbw2a_di" bpmnElement="Activity_Interrupt">
<dc:Bounds x="380" y="130" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0ncff13_di" bpmnElement="Gateway_0ncff13" isMarkerVisible="true">
<dc:Bounds x="535" y="145" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_15z0u0c_di" bpmnElement="Event_0g8w85g">
<dc:Bounds x="642" y="152" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="625" y="195" width="70" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0l8sadb_di" bpmnElement="Event_0l8sadb">
<dc:Bounds x="742" y="152" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_12moz8m_di" bpmnElement="Event_12moz8m">
<dc:Bounds x="292" y="412" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1m4766l_di" bpmnElement="Activity_1m4766l" isExpanded="true">
<dc:Bounds x="350" y="360" width="590" height="200" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0akpdke_di" bpmnElement="Event_0akpdke">
<dc:Bounds x="390" y="442" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1gd7a2h_di" bpmnElement="Flow_1gd7a2h">
<di:waypoint x="328" y="430" />
<di:waypoint x="339" y="430" />
<di:waypoint x="339" y="460" />
<di:waypoint x="350" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0ib6pbh_di" bpmnElement="Event_InterruptBoundary">
<dc:Bounds x="779" y="542" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="782" y="585" width="32" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0j702hl_di" bpmnElement="Event_0j702hl">
<dc:Bounds x="1032" y="442" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0o0l113_di" bpmnElement="Flow_0o0l113">
<di:waypoint x="797" y="578" />
<di:waypoint x="797" y="630" />
<di:waypoint x="1050" y="630" />
<di:waypoint x="1050" y="478" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_093roev_di" bpmnElement="Flow_093roev">
<di:waypoint x="645" y="360" />
<di:waypoint x="645" y="310" />
<di:waypoint x="1050" y="310" />
<di:waypoint x="1050" y="442" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Activity_1s4pw7g_di" bpmnElement="Activity_106f08z">
<dc:Bounds x="475" y="420" width="100" height="80" />
<bpmndi:BPMNShape id="Activity_1m4766l_di" bpmnElement="Activity_1m4766l" isExpanded="true">
<dc:Bounds x="350" y="360" width="590" height="200" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_11u0pgk_di" bpmnElement="Flow_11u0pgk">
<di:waypoint x="575" y="460" />
<di:waypoint x="627" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0ulu4mx_di" bpmnElement="Event_0aqmn5y">
<dc:Bounds x="627" y="442" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="618" y="412" width="56" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_1gs89vo_di" bpmnElement="Flow_1gs89vo">
<di:waypoint x="426" y="460" />
<di:waypoint x="475" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Gateway_0u34qof_di" bpmnElement="Gateway_0u34qof" isMarkerVisible="true">
<dc:Bounds x="695" y="435" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0pjkpp2_di" bpmnElement="Event_0pjkpp2">
<dc:Bounds x="802" y="442" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_18d90uu_di" bpmnElement="Flow_18d90uu">
<di:waypoint x="745" y="460" />
<di:waypoint x="802" y="460" />
<bpmndi:BPMNLabel>
<dc:Bounds x="750" y="442" width="49" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1rqk2v9_di" bpmnElement="Flow_1rqk2v9">
<di:waypoint x="663" y="460" />
<di:waypoint x="695" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0wuxluk_di" bpmnElement="Flow_0wuxluk">
<di:waypoint x="720" y="485" />
<di:waypoint x="720" y="540" />
@ -238,6 +195,49 @@
<dc:Bounds x="580" y="522" width="85" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1rqk2v9_di" bpmnElement="Flow_1rqk2v9">
<di:waypoint x="663" y="460" />
<di:waypoint x="695" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_18d90uu_di" bpmnElement="Flow_18d90uu">
<di:waypoint x="745" y="460" />
<di:waypoint x="802" y="460" />
<bpmndi:BPMNLabel>
<dc:Bounds x="750" y="442" width="49" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1gs89vo_di" bpmnElement="Flow_1gs89vo">
<di:waypoint x="426" y="460" />
<di:waypoint x="475" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_11u0pgk_di" bpmnElement="Flow_11u0pgk">
<di:waypoint x="575" y="460" />
<di:waypoint x="627" y="460" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0akpdke_di" bpmnElement="Event_0akpdke">
<dc:Bounds x="390" y="442" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1s4pw7g_di" bpmnElement="Activity_106f08z">
<dc:Bounds x="475" y="420" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0ulu4mx_di" bpmnElement="Event_0aqmn5y">
<dc:Bounds x="627" y="442" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="618" y="412" width="56" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0u34qof_di" bpmnElement="Gateway_0u34qof" isMarkerVisible="true">
<dc:Bounds x="695" y="435" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0pjkpp2_di" bpmnElement="Event_0pjkpp2">
<dc:Bounds x="802" y="442" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0ib6pbh_di" bpmnElement="Event_InterruptBoundary">
<dc:Bounds x="779" y="542" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="782" y="585" width="32" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1nsvcwb" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1nsvcwb" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="token" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_03vnrmv</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:exclusiveGateway id="Gateway_1w9u16f">
<bpmn:exclusiveGateway id="Gateway_1w9u16f" default="Flow_1qgke9w">
<bpmn:incoming>Flow_0g2wjhu</bpmn:incoming>
<bpmn:incoming>Flow_0ya87hl</bpmn:incoming>
<bpmn:outgoing>Flow_1qgke9w</bpmn:outgoing>
@ -75,28 +75,25 @@
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="token">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1w9u16f_di" bpmnElement="Gateway_1w9u16f" isMarkerVisible="true">
<dc:Bounds x="1015" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1oyfku7_di" bpmnElement="First">
<dc:Bounds x="270" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_13qpm6f_di" bpmnElement="Flow_13qpm6f">
<di:waypoint x="370" y="117" />
<di:waypoint x="465" y="117" />
<bpmndi:BPMNEdge id="Flow_039y4lk_di" bpmnElement="Flow_039y4lk">
<di:waypoint x="1240" y="117" />
<di:waypoint x="1322" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Gateway_0nr9vpb_di" bpmnElement="Gateway_0yirqzr" isMarkerVisible="true">
<dc:Bounds x="465" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_04bpvfu_di" bpmnElement="Flow_04bpvfu">
<di:waypoint x="515" y="117" />
<di:waypoint x="610" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="553" y="99" width="19" height="14" />
</bpmndi:BPMNLabel>
<bpmndi:BPMNEdge id="Flow_03vnrmv_di" bpmnElement="Flow_03vnrmv">
<di:waypoint x="215" y="117" />
<di:waypoint x="270" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ahlz50_di" bpmnElement="Flow_0ahlz50">
<di:waypoint x="710" y="117" />
<di:waypoint x="840" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ya87hl_di" bpmnElement="Flow_0ya87hl">
<di:waypoint x="940" y="117" />
<di:waypoint x="1015" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1qgke9w_di" bpmnElement="Flow_1qgke9w">
<di:waypoint x="1065" y="117" />
<di:waypoint x="1140" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0g2wjhu_di" bpmnElement="Flow_0g2wjhu">
<di:waypoint x="490" y="142" />
@ -107,18 +104,29 @@
<dc:Bounds x="758" y="322" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1qgke9w_di" bpmnElement="Flow_1qgke9w">
<di:waypoint x="1065" y="117" />
<di:waypoint x="1140" y="117" />
<bpmndi:BPMNEdge id="Flow_04bpvfu_di" bpmnElement="Flow_04bpvfu">
<di:waypoint x="515" y="117" />
<di:waypoint x="610" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="553" y="99" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ya87hl_di" bpmnElement="Flow_0ya87hl">
<di:waypoint x="940" y="117" />
<di:waypoint x="1015" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ahlz50_di" bpmnElement="Flow_0ahlz50">
<di:waypoint x="710" y="117" />
<di:waypoint x="840" y="117" />
<bpmndi:BPMNEdge id="Flow_13qpm6f_di" bpmnElement="Flow_13qpm6f">
<di:waypoint x="370" y="117" />
<di:waypoint x="465" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1w9u16f_di" bpmnElement="Gateway_1w9u16f" isMarkerVisible="true">
<dc:Bounds x="1015" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1oyfku7_di" bpmnElement="First">
<dc:Bounds x="270" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0nr9vpb_di" bpmnElement="Gateway_0yirqzr" isMarkerVisible="true">
<dc:Bounds x="465" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_18dz45e_di" bpmnElement="FormA">
<dc:Bounds x="610" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
@ -128,17 +136,9 @@
<bpmndi:BPMNShape id="Activity_1byzp7w_di" bpmnElement="FormC">
<dc:Bounds x="1140" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_03vnrmv_di" bpmnElement="Flow_03vnrmv">
<di:waypoint x="215" y="117" />
<di:waypoint x="270" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0xfwzm8_di" bpmnElement="Event_0xfwzm8">
<dc:Bounds x="1322" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_039y4lk_di" bpmnElement="Flow_039y4lk">
<di:waypoint x="1240" y="117" />
<di:waypoint x="1322" y="117" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1nsvcwb" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1nsvcwb" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="token" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_03vnrmv</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:exclusiveGateway id="Gateway_1w9u16f">
<bpmn:exclusiveGateway id="Gateway_1w9u16f" default="Flow_1qgke9w">
<bpmn:incoming>Flow_0g2wjhu</bpmn:incoming>
<bpmn:incoming>Flow_0ya87hl</bpmn:incoming>
<bpmn:outgoing>Flow_1qgke9w</bpmn:outgoing>
@ -73,28 +73,25 @@
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="token">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1w9u16f_di" bpmnElement="Gateway_1w9u16f" isMarkerVisible="true">
<dc:Bounds x="1015" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1oyfku7_di" bpmnElement="First">
<dc:Bounds x="270" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_13qpm6f_di" bpmnElement="Flow_13qpm6f">
<di:waypoint x="370" y="117" />
<di:waypoint x="465" y="117" />
<bpmndi:BPMNEdge id="Flow_039y4lk_di" bpmnElement="Flow_039y4lk">
<di:waypoint x="1240" y="117" />
<di:waypoint x="1322" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Gateway_0nr9vpb_di" bpmnElement="Gateway_0yirqzr" isMarkerVisible="true">
<dc:Bounds x="465" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_04bpvfu_di" bpmnElement="Flow_04bpvfu">
<di:waypoint x="515" y="117" />
<di:waypoint x="610" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="553" y="99" width="19" height="14" />
</bpmndi:BPMNLabel>
<bpmndi:BPMNEdge id="Flow_03vnrmv_di" bpmnElement="Flow_03vnrmv">
<di:waypoint x="215" y="117" />
<di:waypoint x="270" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ahlz50_di" bpmnElement="Flow_0ahlz50">
<di:waypoint x="710" y="117" />
<di:waypoint x="840" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ya87hl_di" bpmnElement="Flow_0ya87hl">
<di:waypoint x="940" y="117" />
<di:waypoint x="1015" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1qgke9w_di" bpmnElement="Flow_1qgke9w">
<di:waypoint x="1065" y="117" />
<di:waypoint x="1140" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0g2wjhu_di" bpmnElement="Flow_0g2wjhu">
<di:waypoint x="490" y="142" />
@ -105,18 +102,29 @@
<dc:Bounds x="758" y="322" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1qgke9w_di" bpmnElement="Flow_1qgke9w">
<di:waypoint x="1065" y="117" />
<di:waypoint x="1140" y="117" />
<bpmndi:BPMNEdge id="Flow_04bpvfu_di" bpmnElement="Flow_04bpvfu">
<di:waypoint x="515" y="117" />
<di:waypoint x="610" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="553" y="99" width="19" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ya87hl_di" bpmnElement="Flow_0ya87hl">
<di:waypoint x="940" y="117" />
<di:waypoint x="1015" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ahlz50_di" bpmnElement="Flow_0ahlz50">
<di:waypoint x="710" y="117" />
<di:waypoint x="840" y="117" />
<bpmndi:BPMNEdge id="Flow_13qpm6f_di" bpmnElement="Flow_13qpm6f">
<di:waypoint x="370" y="117" />
<di:waypoint x="465" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1w9u16f_di" bpmnElement="Gateway_1w9u16f" isMarkerVisible="true">
<dc:Bounds x="1015" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1oyfku7_di" bpmnElement="First">
<dc:Bounds x="270" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_0nr9vpb_di" bpmnElement="Gateway_0yirqzr" isMarkerVisible="true">
<dc:Bounds x="465" y="92" width="50" height="50" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_18dz45e_di" bpmnElement="FormA">
<dc:Bounds x="610" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
@ -126,17 +134,9 @@
<bpmndi:BPMNShape id="Activity_1byzp7w_di" bpmnElement="FormC">
<dc:Bounds x="1140" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_03vnrmv_di" bpmnElement="Flow_03vnrmv">
<di:waypoint x="215" y="117" />
<di:waypoint x="270" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Event_0xfwzm8_di" bpmnElement="Event_0xfwzm8">
<dc:Bounds x="1322" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_039y4lk_di" bpmnElement="Flow_039y4lk">
<di:waypoint x="1240" y="117" />
<di:waypoint x="1322" y="117" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_1oogn9j" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.7.3">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_1oogn9j" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.11.1">
<bpmn:process id="token_trial_parallel_simple" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_1w2tcdp</bpmn:outgoing>
@ -100,7 +100,7 @@
<bpmn:sequenceFlow id="SequenceFlow_09c4dnr" sourceRef="UserTask_0fd3nql" targetRef="ExclusiveGateway_1knbrs3" />
<bpmn:sequenceFlow id="SequenceFlow_0rwnquq" sourceRef="UserTask_1k9gxsc" targetRef="ExclusiveGateway_1knbrs3" />
<bpmn:sequenceFlow id="SequenceFlow_00fpfhi" sourceRef="ExclusiveGateway_1knbrs3" targetRef="Gateway_191l7i1" />
<bpmn:exclusiveGateway id="Gateway_191l7i1">
<bpmn:exclusiveGateway id="Gateway_191l7i1" default="Flow_1vtdwmy">
<bpmn:incoming>SequenceFlow_00fpfhi</bpmn:incoming>
<bpmn:incoming>Flow_0wycgzo</bpmn:incoming>
<bpmn:outgoing>Flow_1vtdwmy</bpmn:outgoing>
@ -126,6 +126,18 @@
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="token_trial_parallel_simple">
<bpmndi:BPMNEdge id="Flow_1vtdwmy_di" bpmnElement="Flow_1vtdwmy">
<di:waypoint x="985" y="247" />
<di:waypoint x="1062" y="247" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_00zjlx7_di" bpmnElement="Flow_00zjlx7">
<di:waypoint x="360" y="247" />
<di:waypoint x="455" y="247" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1w2tcdp_di" bpmnElement="Flow_1w2tcdp">
<di:waypoint x="188" y="247" />
<di:waypoint x="260" y="247" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0wycgzo_di" bpmnElement="Flow_0wycgzo">
<di:waypoint x="480" y="222" />
<di:waypoint x="480" y="100" />
@ -166,18 +178,12 @@
<di:waypoint x="600" y="190" />
<di:waypoint x="680" y="190" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1w2tcdp_di" bpmnElement="Flow_1w2tcdp">
<di:waypoint x="188" y="247" />
<di:waypoint x="260" y="247" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_00zjlx7_di" bpmnElement="Flow_00zjlx7">
<di:waypoint x="360" y="247" />
<di:waypoint x="455" y="247" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1vtdwmy_di" bpmnElement="Flow_1vtdwmy">
<di:waypoint x="985" y="247" />
<di:waypoint x="1062" y="247" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="152" y="229" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_09wp7av_di" bpmnElement="EndEvent_09wp7av">
<dc:Bounds x="1062" y="229" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="UserTask_0fd3nql_di" bpmnElement="UserTask_0fd3nql">
<dc:Bounds x="680" y="150" width="100" height="80" />
</bpmndi:BPMNShape>
@ -202,15 +208,9 @@
<dc:Bounds x="451" y="279" width="60" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="152" y="229" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0n0v1lt_di" bpmnElement="Activity_1ghr6kd">
<dc:Bounds x="260" y="207" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_09wp7av_di" bpmnElement="EndEvent_09wp7av">
<dc:Bounds x="1062" y="229" width="36" height="36" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>