Adding some additional bpmns from Staging server to include in tests.

This commit is contained in:
Dan Funk 2020-08-27 14:00:45 -04:00
parent 53d09303d8
commit 5dacc46600
18 changed files with 3821 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,214 @@
<?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_ef00925" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.0.0-dev">
<bpmn:collaboration id="Collaboration_1540cgn">
<bpmn:participant id="Participant_17tc4sp" name="Department Chair Approval" processRef="Process_b47cbda" />
</bpmn:collaboration>
<bpmn:process id="Process_b47cbda" isExecutable="true">
<bpmn:laneSet id="LaneSet_1de522h">
<bpmn:lane id="Lane_1rq9xje">
<bpmn:flowNodeRef>StartEvent_1</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_0s4b6tq</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_1cfbpwn</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_0kyyjcu</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Activity_0pm3m9s</bpmn:flowNodeRef>
</bpmn:lane>
<bpmn:lane id="Lane_1b7d4a7" name="DeptChairApprover">
<bpmn:flowNodeRef>Activity_1npbkhr</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Gateway_1mui28k</bpmn:flowNodeRef>
<bpmn:flowNodeRef>Event_0t6gdb3</bpmn:flowNodeRef>
</bpmn:lane>
</bpmn:laneSet>
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_0qf0ntn</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_0qf0ntn" sourceRef="StartEvent_1" targetRef="Activity_0s4b6tq" />
<bpmn:sequenceFlow id="Flow_0wxblf0" sourceRef="Activity_0pm3m9s" targetRef="Activity_1npbkhr" />
<bpmn:sequenceFlow id="Flow_1qqzl3b" sourceRef="Activity_1npbkhr" targetRef="Gateway_1mui28k" />
<bpmn:sequenceFlow id="Flow_1h379u7" name="Yes" sourceRef="Gateway_1mui28k" targetRef="Event_0t6gdb3" />
<bpmn:sequenceFlow id="Flow_0qea2ru" name="No" sourceRef="Gateway_1mui28k" targetRef="Activity_0pm3m9s">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">isApproved == False</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="Flow_1p4pvy1" sourceRef="Activity_0s4b6tq" targetRef="Activity_0kyyjcu" />
<bpmn:sequenceFlow id="Flow_0bsmt3b" sourceRef="Activity_0kyyjcu" targetRef="Activity_1cfbpwn" />
<bpmn:sequenceFlow id="Flow_0rqond3" sourceRef="Activity_1cfbpwn" targetRef="Activity_0pm3m9s" />
<bpmn:userTask id="Activity_0s4b6tq" name="Temp Datastore" camunda:formKey="TempDatastore">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="Department" label="Department" type="string">
<camunda:properties>
<camunda:property id="description" value="Responsible Organization Department" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0qf0ntn</bpmn:incoming>
<bpmn:outgoing>Flow_1p4pvy1</bpmn:outgoing>
</bpmn:userTask>
<bpmn:scriptTask id="Activity_1cfbpwn" name="Build Signee List">
<bpmn:incoming>Flow_0bsmt3b</bpmn:incoming>
<bpmn:outgoing>Flow_0rqond3</bpmn:outgoing>
<bpmn:script>investigators = study_info('investigators')
pi = investigators.get('PI', None)
subs_list = ""
for k in investigators.keys():
if k[:2] == 'SI':
investigator = investigators.get(k)
subs_list = subs_list + investigator["uid"] + ", "
exclude_list_arg = "[" + subs_list + pi.uid + "]"
del(pi)
del(k)
del(investigator)
del(investigators)
dc_enum = []
if len(Chair_CID) &gt; 0 and len(Chair_Name) &gt; 0 and Chair_CID not in exclude_list_arg:
dc_enum_dc = [
{
"uid": Chair_CID,
"name": Chair_Name
},
]
else:
dc_enum_dc = []
if len(D1_CID) &gt; 0 and len(D1_Name) &gt; 0 and D1_CID not in exclude_list_arg:
dc_enum_d1 = [
{
"uid": D1_CID,
"name": D1_Name
},
]
else:
dc_enum_d1 = []
if len(D2_CID) &gt; 0 and len(D2_Name) &gt; 0 and D2_CID not in exclude_list_arg:
dc_enum_d2 = [
{
"uid": D2_CID,
"name": D2_Name
},
]
else:
dc_enum_d2 = []
dc_enum = dc_enum_dc + dc_enum_d1 + dc_enum_d2
del(dc_enum_dc)
del(dc_enum_d1)
del(dc_enum_d2)</bpmn:script>
</bpmn:scriptTask>
<bpmn:businessRuleTask id="Activity_0kyyjcu" name="Determine Department Chair" camunda:decisionRef="Decision_Medicine_Dept_Chair">
<bpmn:incoming>Flow_1p4pvy1</bpmn:incoming>
<bpmn:outgoing>Flow_0bsmt3b</bpmn:outgoing>
</bpmn:businessRuleTask>
<bpmn:userTask id="Activity_0pm3m9s" name="Select Signee" camunda:formKey="Signee">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="DeptChairApprover" label="Select Signee" type="enum">
<camunda:properties>
<camunda:property id="data.name" value="dc_enum" />
<camunda:property id="data.value.column" value="uid" />
<camunda:property id="data.label.column" value="name" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0rqond3</bpmn:incoming>
<bpmn:incoming>Flow_0qea2ru</bpmn:incoming>
<bpmn:outgoing>Flow_0wxblf0</bpmn:outgoing>
</bpmn:userTask>
<bpmn:userTask id="Activity_1npbkhr" name="Review Approval Request" camunda:formKey="ReviewApporvalRequest">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="isApproved" label="Approve Request?" type="boolean" />
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0wxblf0</bpmn:incoming>
<bpmn:outgoing>Flow_1qqzl3b</bpmn:outgoing>
</bpmn:userTask>
<bpmn:exclusiveGateway id="Gateway_1mui28k" name="Approved?" default="Flow_1h379u7">
<bpmn:incoming>Flow_1qqzl3b</bpmn:incoming>
<bpmn:outgoing>Flow_1h379u7</bpmn:outgoing>
<bpmn:outgoing>Flow_0qea2ru</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:endEvent id="Event_0t6gdb3">
<bpmn:incoming>Flow_1h379u7</bpmn:incoming>
</bpmn:endEvent>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1540cgn">
<bpmndi:BPMNShape id="Participant_17tc4sp_di" bpmnElement="Participant_17tc4sp" isHorizontal="true">
<dc:Bounds x="175" y="130" width="1185" height="380" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Lane_1b7d4a7_di" bpmnElement="Lane_1b7d4a7" isHorizontal="true">
<dc:Bounds x="205" y="317" width="1155" height="193" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Lane_1rq9xje_di" bpmnElement="Lane_1rq9xje" isHorizontal="true">
<dc:Bounds x="205" y="130" width="1155" height="187" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_0rqond3_di" bpmnElement="Flow_0rqond3">
<di:waypoint x="850" y="220" />
<di:waypoint x="930" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0bsmt3b_di" bpmnElement="Flow_0bsmt3b">
<di:waypoint x="660" y="220" />
<di:waypoint x="750" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1p4pvy1_di" bpmnElement="Flow_1p4pvy1">
<di:waypoint x="470" y="220" />
<di:waypoint x="560" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0qea2ru_di" bpmnElement="Flow_0qea2ru">
<di:waypoint x="1150" y="395" />
<di:waypoint x="1150" y="220" />
<di:waypoint x="1030" y="220" />
<bpmndi:BPMNLabel>
<dc:Bounds x="1158" y="363" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1h379u7_di" bpmnElement="Flow_1h379u7">
<di:waypoint x="1175" y="420" />
<di:waypoint x="1292" y="420" />
<bpmndi:BPMNLabel>
<dc:Bounds x="1225" y="402" width="18" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1qqzl3b_di" bpmnElement="Flow_1qqzl3b">
<di:waypoint x="1030" y="420" />
<di:waypoint x="1125" y="420" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0wxblf0_di" bpmnElement="Flow_0wxblf0">
<di:waypoint x="980" y="260" />
<di:waypoint x="980" y="380" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0qf0ntn_di" bpmnElement="Flow_0qf0ntn">
<di:waypoint x="284" y="220" />
<di:waypoint x="370" y="220" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="248" y="202" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_01qoifo_di" bpmnElement="Activity_0s4b6tq">
<dc:Bounds x="370" y="180" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1sgan1v_di" bpmnElement="Activity_1cfbpwn">
<dc:Bounds x="750" y="180" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1u532ks_di" bpmnElement="Activity_0kyyjcu">
<dc:Bounds x="560" y="180" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1av9xpa_di" bpmnElement="Activity_0pm3m9s">
<dc:Bounds x="930" y="180" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0mqofy6_di" bpmnElement="Activity_1npbkhr">
<dc:Bounds x="930" y="380" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1mui28k_di" bpmnElement="Gateway_1mui28k" isMarkerVisible="true">
<dc:Bounds x="1125" y="395" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="1123" y="452" width="54" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_0t6gdb3_di" bpmnElement="Event_0t6gdb3">
<dc:Bounds x="1292" y="402" width="36" height="36" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

Binary file not shown.

View File

@ -0,0 +1,223 @@
<?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_1e7871f" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.5.0">
<bpmn:process id="Process_04jm0bm" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>SequenceFlow_1dhb8f4</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="SequenceFlow_1dhb8f4" sourceRef="StartEvent_1" targetRef="Activity_18x16ff" />
<bpmn:userTask id="IDE_Entry_Submit" name="Edit IDE Info" camunda:formKey="IDE">
<bpmn:documentation>{{ ide_message }}</bpmn:documentation>
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="IDE_Number" label="IDE #:" type="string">
<camunda:properties>
<camunda:property id="read_only" value="true" />
<camunda:property id="hide_expression" value="model.IDE_HolderType.value === &#34;Exempt&#34; || model.IDE_HolderType.value === &#34;NotExempt&#34;" />
</camunda:properties>
</camunda:formField>
<camunda:formField id="IDE_NewDeviceOrNewIndication" label="New Device used or New Indication for Marketed Device" type="boolean" />
<camunda:formField id="IDE_HolderType" label="IDE Holder Type" type="enum">
<camunda:value id="Industry" name="Industry" />
<camunda:value id="UVaPI" name="UVa PI" />
<camunda:value id="OtherPI" name="Other PI" />
<camunda:value id="UVaCenter" name="UVaCenter" />
<camunda:value id="OtherCollUniv" name="Other Colleges and Universities" />
<camunda:value id="NotExempt" name="IDE not exempt, but no IDE#" />
<camunda:value id="Exempt" name="IDE Exempt" />
</camunda:formField>
<camunda:formField id="IDE_HolderNameOSP" label="Holder Name" type="autocomplete">
<camunda:properties>
<camunda:property id="spreadsheet.name" value="SponsorList.xls" />
<camunda:property id="spreadsheet.value.column" value="CUSTOMER_NUMBER" />
<camunda:property id="spreadsheet.label.column" value="CUSTOMER_NAME" />
<camunda:property id="autocomplete_num" value="15" />
<camunda:property id="hide_expression" value="!model.IDE_HolderType || !model.IDE_HolderType.value || (model.IDE_HolderType.value !== &#34;Industry&#34; &#38;&#38; model.IDE_HolderType.value !== &#34;OtherCollUniv&#34;)" />
<camunda:property id="description" value="Text" />
</camunda:properties>
</camunda:formField>
<camunda:formField id="IDE_HolderNameText" label="IDE Holder Name if not in above list" type="string">
<camunda:properties>
<camunda:property id="hide_expression" value="(!model.IDE_HolderType || !model.IDE_HolderType.value || model.IDE_HolderType.value === &#34;UVaPI&#34; || model.IDE_HolderType.value === &#34;Exempt&#34; || model.IDE_HolderType.value === &#34;NotExempt&#34;) || ((model.IDE_HolderType.value === &#34;Industry&#34; || model.IDE_HolderType.value === &#34;OtherCollUniv&#34;) &#38;&#38; (!model.IDE_HolderNameOSP || !model.IDE_HolderNameOSP.value || model.IDE_HolderNameOSP.value !== &#34;100&#34;))" />
<camunda:property id="description" value="Text" />
</camunda:properties>
</camunda:formField>
<camunda:formField id="IDE_HolderNameUVA" label="Holder Name" type="autocomplete">
<camunda:properties>
<camunda:property id="hide_expression" value="!model.IDE_HolderType || !model.IDE_HolderType.value || model.IDE_HolderType.value !== &#34;UVaPI&#34;" />
<camunda:property id="description" value="LDAP" />
</camunda:properties>
</camunda:formField>
<camunda:formField id="IDE_DeviceName" label="Device Name" type="string" />
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_1yb1vma</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_1t2ha54</bpmn:outgoing>
</bpmn:userTask>
<bpmn:endEvent id="EndEvent_1h89sl4">
<bpmn:documentation>temp</bpmn:documentation>
<bpmn:incoming>SequenceFlow_1t2ha54</bpmn:incoming>
<bpmn:incoming>SequenceFlow_1yhv1qz</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="SequenceFlow_1t2ha54" sourceRef="IDE_Entry_Submit" targetRef="EndEvent_1h89sl4" />
<bpmn:exclusiveGateway id="ExclusiveGateway_1fib89p" name="IS_IDE = 1?">
<bpmn:incoming>SequenceFlow_1lazou8</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_1yb1vma</bpmn:outgoing>
<bpmn:outgoing>SequenceFlow_011l5xt</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="SequenceFlow_1yb1vma" name="Yes" sourceRef="ExclusiveGateway_1fib89p" targetRef="IDE_Entry_Submit">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">ide.IS_IDE == 1</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="SequenceFlow_011l5xt" name="No" sourceRef="ExclusiveGateway_1fib89p" targetRef="Task_NoIDE">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">not ide.IS_IDE or ide.IS_IDE == 0</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:manualTask id="Task_NoIDE" name="Show Invalid IDE Access">
<bpmn:documentation>{{ ide_message }}</bpmn:documentation>
<bpmn:incoming>SequenceFlow_011l5xt</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_1yhv1qz</bpmn:outgoing>
</bpmn:manualTask>
<bpmn:sequenceFlow id="SequenceFlow_1lazou8" sourceRef="Task_SupplementIDE" targetRef="ExclusiveGateway_1fib89p" />
<bpmn:businessRuleTask id="Task_SupplementIDE" name="IDE Info from PB" camunda:decisionRef="decision_ide_check">
<bpmn:incoming>Flow_08ezwjq</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_1lazou8</bpmn:outgoing>
</bpmn:businessRuleTask>
<bpmn:sequenceFlow id="SequenceFlow_1yhv1qz" sourceRef="Task_NoIDE" targetRef="EndEvent_1h89sl4" />
<bpmn:sequenceFlow id="Flow_1majmgp" sourceRef="Activity_1tp43gs" targetRef="Gateway_1xe3e0h" />
<bpmn:scriptTask id="Activity_1tp43gs" name="Extract IDE Data">
<bpmn:incoming>Flow_0v7gh90</bpmn:incoming>
<bpmn:outgoing>Flow_1majmgp</bpmn:outgoing>
<bpmn:script>ide = {x:details[x] for x in details.keys() if x == 'IDE'}
is_ide = {x:details[x] for x in details.keys() if x == 'IS_IDE'}
del(details)</bpmn:script>
</bpmn:scriptTask>
<bpmn:sequenceFlow id="Flow_0v7gh90" sourceRef="Activity_18x16ff" targetRef="Activity_1tp43gs" />
<bpmn:scriptTask id="Activity_18x16ff" name="Load IRB API Details">
<bpmn:incoming>SequenceFlow_1dhb8f4</bpmn:incoming>
<bpmn:outgoing>Flow_0v7gh90</bpmn:outgoing>
<bpmn:script>details = study_info('details')</bpmn:script>
</bpmn:scriptTask>
<bpmn:exclusiveGateway id="Gateway_1xe3e0h" name="IS_IDE = 1">
<bpmn:incoming>Flow_1majmgp</bpmn:incoming>
<bpmn:outgoing>Flow_08ezwjq</bpmn:outgoing>
<bpmn:outgoing>Flow_1l53x1e</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_08ezwjq" name="Yes" sourceRef="Gateway_1xe3e0h" targetRef="Task_SupplementIDE">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">is_ide.IS_IDE == 1</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="Flow_1l53x1e" name="No" sourceRef="Gateway_1xe3e0h" targetRef="Activity_1seaot7">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">not is_ide.IS_IDE or is_ide.IS_IDE == 0</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:manualTask id="Activity_1seaot7" name="Show Contact Support">
<bpmn:documentation>{{ ide_message }}</bpmn:documentation>
<bpmn:incoming>Flow_1l53x1e</bpmn:incoming>
<bpmn:outgoing>Flow_0pfii1m</bpmn:outgoing>
</bpmn:manualTask>
<bpmn:endEvent id="Event_16u0jqm">
<bpmn:incoming>Flow_0pfii1m</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0pfii1m" sourceRef="Activity_1seaot7" targetRef="Event_16u0jqm" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_04jm0bm">
<bpmndi:BPMNEdge id="Flow_0pfii1m_di" bpmnElement="Flow_0pfii1m">
<di:waypoint x="530" y="250" />
<di:waypoint x="582" y="250" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1l53x1e_di" bpmnElement="Flow_1l53x1e">
<di:waypoint x="480" y="142" />
<di:waypoint x="480" y="210" />
<bpmndi:BPMNLabel>
<dc:Bounds x="488" y="173" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_08ezwjq_di" bpmnElement="Flow_08ezwjq">
<di:waypoint x="505" y="117" />
<di:waypoint x="580" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="534" y="99" width="18" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0v7gh90_di" bpmnElement="Flow_0v7gh90">
<di:waypoint x="210" y="117" />
<di:waypoint x="280" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1majmgp_di" bpmnElement="Flow_1majmgp">
<di:waypoint x="380" y="117" />
<di:waypoint x="455" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_1yhv1qz_di" bpmnElement="SequenceFlow_1yhv1qz">
<di:waypoint x="1020" y="250" />
<di:waypoint x="1170" y="250" />
<di:waypoint x="1170" y="135" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_1lazou8_di" bpmnElement="SequenceFlow_1lazou8">
<di:waypoint x="680" y="117" />
<di:waypoint x="785" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_011l5xt_di" bpmnElement="SequenceFlow_011l5xt">
<di:waypoint x="810" y="142" />
<di:waypoint x="810" y="250" />
<di:waypoint x="920" y="250" />
<bpmndi:BPMNLabel>
<dc:Bounds x="819" y="194" width="15" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_1yb1vma_di" bpmnElement="SequenceFlow_1yb1vma">
<di:waypoint x="835" y="117" />
<di:waypoint x="920" y="117" />
<bpmndi:BPMNLabel>
<dc:Bounds x="870" y="99" width="18" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_1t2ha54_di" bpmnElement="SequenceFlow_1t2ha54">
<di:waypoint x="1020" y="117" />
<di:waypoint x="1152" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_1dhb8f4_di" bpmnElement="SequenceFlow_1dhb8f4">
<di:waypoint x="58" y="117" />
<di:waypoint x="110" y="117" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="22" y="99" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="UserTask_17syy68_di" bpmnElement="IDE_Entry_Submit">
<dc:Bounds x="920" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_1h89sl4_di" bpmnElement="EndEvent_1h89sl4">
<dc:Bounds x="1152" y="99" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="414" y="202" width="74" height="27" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="ExclusiveGateway_1fib89p_di" bpmnElement="ExclusiveGateway_1fib89p" isMarkerVisible="true">
<dc:Bounds x="785" y="92" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="782" y="47" width="60" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="ManualTask_1f7z9wm_di" bpmnElement="Task_NoIDE">
<dc:Bounds x="920" y="210" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="BusinessRuleTask_1cszgkx_di" bpmnElement="Task_SupplementIDE">
<dc:Bounds x="580" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0sq4r9w_di" bpmnElement="Activity_18x16ff">
<dc:Bounds x="110" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Gateway_1xe3e0h_di" bpmnElement="Gateway_1xe3e0h" isMarkerVisible="true">
<dc:Bounds x="455" y="92" width="50" height="50" />
<bpmndi:BPMNLabel>
<dc:Bounds x="453" y="68" width="54" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_01v60lq_di" bpmnElement="Activity_1seaot7">
<dc:Bounds x="430" y="210" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_16u0jqm_di" bpmnElement="Event_16u0jqm">
<dc:Bounds x="582" y="232" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0u8knps_di" bpmnElement="Activity_1tp43gs">
<dc:Bounds x="280" y="77" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/1.0" id="Definitions_d4461ee" name="DRD" namespace="http://camunda.org/schema/1.0/dmn">
<decision id="Decision_UVA_IND_Check" name="UVA IND Check">
<extensionElements>
<biodi:bounds x="280" y="120" width="180" height="80" />
</extensionElements>
<decisionTable id="decisionTable_1">
<input id="input_1" label="UVA IND?">
<inputExpression id="inputExpression_1" typeRef="integer">
<text>is_uva_ind</text>
</inputExpression>
</input>
<output id="output_1" label="PB IS UVA IND" name="pb_is_uva_ind" typeRef="string" />
<rule id="DecisionRule_0zp23yq">
<inputEntry id="UnaryTests_0ojkmct">
<text>1</text>
</inputEntry>
<outputEntry id="LiteralExpression_1fbdkeh">
<text>"UVaPI"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1708zy0">
<inputEntry id="UnaryTests_0kl2qjr">
<text>0</text>
</inputEntry>
<outputEntry id="LiteralExpression_1e29o43">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1l7fmr2">
<inputEntry id="UnaryTests_0c05h8p">
<text></text>
</inputEntry>
<outputEntry id="LiteralExpression_1k7e72v">
<text></text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

Binary file not shown.

View File

@ -0,0 +1,224 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/1.0" id="Definitions_a3b9c9b" name="DRD" namespace="http://camunda.org/schema/1.0/dmn">
<decision id="Decision_PI_Dept" name="PI Department">
<extensionElements>
<biodi:bounds x="300" y="140" width="180" height="80" />
</extensionElements>
<decisionTable id="decisionTable_1">
<input id="InputClause_12xvnxx" label="E0 Dept">
<inputExpression id="LiteralExpression_1q9d9zi" typeRef="string">
<text>pi.E0.deptAbbrv</text>
</inputExpression>
</input>
<output id="output_1" label="PI Department" name="PI_E0_deptName" typeRef="string" />
<rule id="DecisionRule_1b5ywn5">
<inputEntry id="UnaryTests_1bev7id">
<text>"ANES"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1nzq40i">
<text>"Anesthesiology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0wbq6tr">
<inputEntry id="UnaryTests_1vs880z">
<text>"BIOC"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0tgoozf">
<text>"Biochemistry &amp; Molecular Genetics"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0zojm1d">
<inputEntry id="UnaryTests_0kgwioh">
<text>"BIOM"</text>
</inputEntry>
<outputEntry id="LiteralExpression_08w2wq9">
<text>"Biomedical Engineering"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0owmu0q">
<inputEntry id="UnaryTests_0rywcw8">
<text>"CELL"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0ru3sax">
<text>"Cell Biology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1ryvd9v">
<inputEntry id="UnaryTests_0yrysju">
<text>"DMED"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1c4iwlq">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_11nfq9u">
<inputEntry id="UnaryTests_15017iw">
<text>"INMD"</text>
</inputEntry>
<outputEntry id="LiteralExpression_193ae27">
<text>"Institute of Law, Psychiatry and Public Policy (institutional)"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0lwmys9">
<inputEntry id="UnaryTests_0bgwlbf">
<text>"INMD-Ctr"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1p0b3ea">
<text>"Keck Center for Cellular Imaging (institutional)"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1qjzff0">
<inputEntry id="UnaryTests_10jnj9r">
<text>"MICR"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1qpt4pk">
<text>"Microbiology, Immunology, and Cancer Biology (MIC)"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_08qhcy9">
<inputEntry id="UnaryTests_19uyawr">
<text>"MPHY"</text>
</inputEntry>
<outputEntry id="LiteralExpression_06z2wux">
<text>"Molecular Physiology &amp; Biological Physics"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0ovrx5p">
<inputEntry id="UnaryTests_0pg1um2">
<text>"NERS"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0p5gvct">
<text>"Neurosurgery"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_135q0hq">
<inputEntry id="UnaryTests_0e11w4s">
<text>"NESC"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0bu5hgk">
<text>"Neuroscience"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_18zb09n">
<inputEntry id="UnaryTests_0fvagjn">
<text>"NEUR"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0tl3ksn">
<text>"Neurology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1vev1e3">
<inputEntry id="UnaryTests_07qj3jf">
<text>"OBGY"</text>
</inputEntry>
<outputEntry id="LiteralExpression_067ehpk">
<text>"Obstetrics and Gynecology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_08k4jec">
<inputEntry id="UnaryTests_0nlzxc2">
<text>"OPHT"</text>
</inputEntry>
<outputEntry id="LiteralExpression_103y6qq">
<text>"Ophthalmology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0a48i89">
<inputEntry id="UnaryTests_1y5nfzo">
<text>"ORTP"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1cr3wq0">
<text>"Orthopaedic Surgery"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0km2u3f">
<inputEntry id="UnaryTests_1buhr78">
<text>"PATH"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0nx1reo">
<text>"Pathology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1gc10ny">
<inputEntry id="UnaryTests_1uru4m4">
<text>"PBHS"</text>
</inputEntry>
<outputEntry id="LiteralExpression_073f0bn">
<text>"Public Health Sciences"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_145vhtj">
<inputEntry id="UnaryTests_1y8kr8n">
<text>"PEDT"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1k444fj">
<text>"Pediatrics"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_05u0zki">
<inputEntry id="UnaryTests_1uudg05">
<text>"PHAR"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1mz3u7d">
<text>"Pharmacology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0o9ozyh">
<inputEntry id="UnaryTests_1ytw7l4">
<text>"PLSR"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0mxv6ov">
<text>"Plastic and Maxillofacial Surgery"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0wbzqhg">
<inputEntry id="UnaryTests_0uwi3mu">
<text>"PSCH"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1lsruwb">
<text>"Psychiatry and Neurobehavioral Sciences"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1ukpgze">
<inputEntry id="UnaryTests_0ijuf1f">
<text>"RADL"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1tjwp0q">
<text>"Radiology and Medical Imaging"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_04la8a6">
<inputEntry id="UnaryTests_1f5hv2r">
<text>"RONC"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0g10afk">
<text>"Radiation Oncology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0qwccau">
<inputEntry id="UnaryTests_0661n6g">
<text>"SURG"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1iuug6l">
<text>"Surgery"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0jleevh">
<inputEntry id="UnaryTests_1cpprhv">
<text>"UROL"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0kllkvf">
<text>"Urology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_08vdy19">
<inputEntry id="UnaryTests_1rl58pv">
<text>"Not in LDAP"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0rueyva">
<text>"Not in LDAP"</text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/1.0" id="Definitions_f88e4e8" name="DRD" namespace="http://camunda.org/schema/1.0/dmn">
<decision id="Decision_PI_School" name="PI School">
<extensionElements>
<biodi:bounds x="300" y="150" width="180" height="80" />
</extensionElements>
<decisionTable id="decisionTable_1">
<input id="input_1" label="E0 School">
<inputExpression id="inputExpression_1" typeRef="string">
<text>pi.E0.schoolAbbrv</text>
</inputExpression>
</input>
<output id="output_1" label="PI Schnool" name="PI_E0_schoolName" typeRef="string" />
<rule id="DecisionRule_0iw6vvy">
<inputEntry id="UnaryTests_12b09kx">
<text>"AS"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1v41ba6">
<text>"Arts &amp; Sciences"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1a10g2y">
<inputEntry id="UnaryTests_0m9zhs2">
<text>"EN"</text>
</inputEntry>
<outputEntry id="LiteralExpression_042fedg">
<text>"Engineering"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_08mkkmy">
<inputEntry id="UnaryTests_15khdr9">
<text>"MD"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1htytl3">
<text>"Medicine"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_028hdln">
<inputEntry id="UnaryTests_0f8ykny">
<text>"NR"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0worgwg">
<text>"Nursing"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_00xmnyh">
<inputEntry id="UnaryTests_1vhujxy">
<text>"RS"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0n7lwiw">
<text>"Provost Office"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0hmk2dt">
<inputEntry id="UnaryTests_133zdb4">
<text>"Not in LDAP"</text>
</inputEntry>
<outputEntry id="LiteralExpression_06p5yz2">
<text>"Not in LDAP"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_01w7s67">
<inputEntry id="UnaryTests_1p7ofcc">
<text></text>
</inputEntry>
<outputEntry id="LiteralExpression_0bciq1t">
<text>"Not found in scrtpts"</text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/1.0" id="Definitions_0adc6e9" name="DRD" namespace="http://camunda.org/schema/1.0/dmn">
<decision id="Decision_RO" name="Determine RO">
<extensionElements>
<biodi:bounds x="420" y="180" width="180" height="80" />
</extensionElements>
<decisionTable id="decisionTable_1">
<input id="input_1" label="RO Same As PI&#39;s Primary Dept?">
<inputExpression id="inputExpression_1" typeRef="boolean">
<text>isRO_SameAsPIsPriDept</text>
</inputExpression>
</input>
<input id="InputClause_1xgnpdy" label="RO School">
<inputExpression id="LiteralExpression_1bqutsa" typeRef="string">
<text>RO_StudySchool.value</text>
</inputExpression>
</input>
<output id="output_1" label="RO School" name="RO_School" typeRef="string" />
<output id="OutputClause_0f76t6l" label="RO Department" name="RO_Dept" typeRef="string" />
<rule id="DecisionRule_0218zu9">
<inputEntry id="UnaryTests_061tvgo">
<text>True</text>
</inputEntry>
<inputEntry id="UnaryTests_1r0zkd8">
<text></text>
</inputEntry>
<outputEntry id="LiteralExpression_1p32kxk">
<text>pi.E0.schoolName</text>
</outputEntry>
<outputEntry id="LiteralExpression_07rulgc" expressionLanguage="feel">
<text>pi.E0.deptName</text>
</outputEntry>
</rule>
<rule id="DecisionRule_04pw6py">
<inputEntry id="UnaryTests_0u65ktf">
<text>False</text>
</inputEntry>
<inputEntry id="UnaryTests_14yvbz3">
<text>"AS"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1ujjyis">
<text>RO_StudySchool.label</text>
</outputEntry>
<outputEntry id="LiteralExpression_06p10h4">
<text>RO_StudyDeptArtsSciences.label</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0l0orcb">
<inputEntry id="UnaryTests_1nfg5uh">
<text>False</text>
</inputEntry>
<inputEntry id="UnaryTests_0o5tflu">
<text>"CU"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0ukcma3">
<text>RO_StudySchool.label</text>
</outputEntry>
<outputEntry id="LiteralExpression_03wc2vv">
<text>RO_StudyDeptEducatoin.label</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0j2d370">
<inputEntry id="UnaryTests_0m6l42r">
<text>False</text>
</inputEntry>
<inputEntry id="UnaryTests_00yvxdr">
<text>"MD"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0vy8mcu">
<text>RO_StudySchool.label</text>
</outputEntry>
<outputEntry id="LiteralExpression_0a2j3zg">
<text>RO_StudyDeptMedicine.label</text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

View File

@ -0,0 +1,951 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/1.0" id="Definitions_d28686b" name="DRD" namespace="http://camunda.org/schema/1.0/dmn" exporter="Camunda Modeler" exporterVersion="3.5.0">
<decision id="Decision_RO_Chair" name="RO Department Chair">
<extensionElements>
<biodi:bounds x="300" y="130" width="180" height="80" />
</extensionElements>
<decisionTable id="decisionTable_1">
<input id="input_1" label="RO Department">
<inputExpression id="inputExpression_1" typeRef="string">
<text>RO_Department</text>
</inputExpression>
</input>
<output id="OutputClause_0a23e1m" label="RO Chair Computer ID" name="RO_Chair_CID" typeRef="string" />
<output id="output_1" label="RO Chair Name &#38; Degree" name="RO_Chair_Name_Degree" typeRef="string" />
<output id="OutputClause_0ysj4lb" label="RO Chair Title" name="RO_Chair_Title" typeRef="string" />
<output id="OutputClause_1cw9kan" label="RO Chair Sig Block" name="RO_Chair_Sig_Block" typeRef="string" />
<output id="OutputClause_0lym39s" label="RO Designee 1 CID" name="RO_D1_CID" typeRef="string" />
<output id="OutputClause_1jjvdz1" label="RO Designee 1 Name &#38; Degree" name="RO_D1_Name_Degree" typeRef="string" />
<output id="OutputClause_07o7aw8" label="RO Designee 1 Title" name="RO_D1_Title" typeRef="string" />
<output id="OutputClause_0vfjwcc" label="RO Designee 1 Sig Block" name="RO_D1_Sig_Block" typeRef="string" />
<rule id="DecisionRule_130my8k">
<inputEntry id="UnaryTests_0utry5v">
<text>"Anesthesiology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0npmzip">
<text>"gfr2f"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0tk1vjc">
<text>"George F. Rich, MD, PhD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0e67jw1">
<text>"Harrison Medical Teaching Professor and Chair"</text>
</outputEntry>
<outputEntry id="LiteralExpression_01dz6m5">
<text>"Department of Anesthesiology"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0n6oua7">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0zajaid">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0grhgrz">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1goqtom">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1p25iet">
<inputEntry id="UnaryTests_1twyz8n">
<text>"Biochemistry &amp; Molecular Genetics"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0mk1ouw">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_02ypl0q">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1g170wj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1jhsveh">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_082aspf">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0awx5vb">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0aukxvo">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0009kji">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_11vnz24">
<inputEntry id="UnaryTests_1n5hdk0">
<text>"Biomedical Engineering"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1ki2y5r">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1nbiz8o">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0zidebq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_002cq1c">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0j5jqsg">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0lbxiqn">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0wkbs71">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1wlnj8l">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0o9l1g4">
<inputEntry id="UnaryTests_00c9fvd">
<text>"Brain Institute"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0a5eyr5">
<text>"jk8t"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0e4jt7e">
<text>"Jaideep Kapur, MD, PhD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1kjp55c">
<text>"Director of UVA Brain Institute"</text>
</outputEntry>
<outputEntry id="LiteralExpression_17791yy">
<text>"Eugene Meyer III Professor of Neuroscience"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0v9pxd6">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_07n4c21">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0hvam0u">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_19e4obt">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_07agfmq">
<inputEntry id="UnaryTests_1ne2xho">
<text>"Cell Biology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1mt2ueq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0wfnk1a">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1bdq1nk">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_17cxb6g">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1n5mxii">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1tzwz8h">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_06ibam8">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0o5p6mi">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0tbdzg7">
<inputEntry id="UnaryTests_192cb1q">
<text>"Center for Diabetes Technology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_00jss4e">
<text>"hgm7s"</text>
</outputEntry>
<outputEntry id="LiteralExpression_10za2my">
<text>"Harry G. Mitchell"</text>
</outputEntry>
<outputEntry id="LiteralExpression_096h7xv">
<text>"Chief Operating Officer"</text>
</outputEntry>
<outputEntry id="LiteralExpression_07qfbku">
<text>"Center for Diabetes Technology"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0obq3ta">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0a8ph15">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1tscoeq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_047859r">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0mnaifs">
<inputEntry id="UnaryTests_1pbp49w">
<text>"Center for Research in Reproduction"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0zkt3i2">
<text>"jcm9h"</text>
</outputEntry>
<outputEntry id="LiteralExpression_19cb1bz">
<text>"John C. Marshall, MD, PhD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0uktq93">
<text>"Director, Center for Research in Reproduction"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0v8z227">
<text>"Andrew D. Hart Professor of Medicine"</text>
</outputEntry>
<outputEntry id="LiteralExpression_18x17lq">
<text>"cm2hq"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1l41pgn">
<text>"Christopher McCartney, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1qhexw2">
<text>"Associate Professor of Medicine"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0th4s9k">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1g9heo9">
<inputEntry id="UnaryTests_06vfwmk">
<text>"Dermatology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1yav83a">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1apthzx">
<text>"Art P. Saavedra, MD, PhD, MBA"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0hhk5mn">
<text>"Endowed Professor and Chair of Dermatology"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1yp78ih">
<text>"Chief of Ambulatory Strategy and Operations, Department of Dematology"</text>
</outputEntry>
<outputEntry id="LiteralExpression_163a3e0">
<text>"ltg4ga"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0nknugg">
<text>"Leisa Gonnella"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1rj0p0p">
<text>"Chief Operating Officer, Administrator"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1p9cuj3">
<text>"Department of Dermatology"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_1w4vnv2">
<inputEntry id="UnaryTests_1uxzlwk">
<text>"Emergency Medicine"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0y4klbl">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_00rdpy1">
<text>"Robert O'Connor, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_00v04f6">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0rse4cx">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1w8ejrj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0qdmvgy">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0tjzvg5">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0jfgfhp">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0v9kyu9">
<inputEntry id="UnaryTests_0obk165">
<text>"Family Medicine"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1u4cfnj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0g02cea">
<text>"Li Li, MD, PhD, MPH"</text>
</outputEntry>
<outputEntry id="LiteralExpression_06vuegj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1qhnttc">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_12xt0ep">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1qa5kcs">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0za5gpp">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1twuim4">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0yft3o2">
<inputEntry id="UnaryTests_11hmf6p">
<text>"Institute of Law, Psychiatry and Public Policy (institutional)"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1k99mrq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1en1sr3">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0q5jqja">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_011ucce">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0bogqw7">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0jxkapm">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_13xl7b5">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1pwpak6">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0tn1ntu">
<inputEntry id="UnaryTests_03sw24v">
<text>"Keck Center for Cellular Imaging (institutional)"</text>
</inputEntry>
<outputEntry id="LiteralExpression_13i4uts">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0rzmxbc">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1c1hbm4">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_01151r2">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_087iw0o">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0snuc6d">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_13kstqw">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1e8264r">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1xa7pks">
<inputEntry id="UnaryTests_1pppuin">
<text>"Kinesiology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_17bh2dl">
<text>"alw2v"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0f8mbsy">
<text>"Arthur L. Weltman"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1ktzrw6">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0bs8674">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_02nf3re">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1oxr1hm">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0n7l563">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0opge44">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_07gq82a">
<inputEntry id="UnaryTests_1usw6cv">
<text>"Microbiology, Immunology, and Cancer Biology (MIC)"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0ayt0hb">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0zas7lc">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1t5vcgd">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0nfe8zu">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_02lfwjn">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1qgnopz">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1mw0evh">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_109mquo">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1ugttjx">
<inputEntry id="UnaryTests_0l14jnz">
<text>"Molecular Physiology &amp; Biological Physics"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0cmnhcl">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0nz91ut">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1mvclh2">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1vz32qe">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0ra8i39">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ssvvwf">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_09y17lm">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1jl7ljp">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_13zj816">
<inputEntry id="UnaryTests_03te6ro">
<text>"Neurology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0i51oau">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ym154j">
<text>"Howard Goodkin MD, PhD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0txl5cj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0sekcao">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0gfwwav">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0aszk0t">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1co84ru">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_03q6up9">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1d162e6">
<inputEntry id="UnaryTests_0t4sokv">
<text>"Neuroscience"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1tfzksp">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1lszybr">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1976phh">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1h2752z">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0jnhvv5">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1rzehm7">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0n5fge7">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1a80hnb">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1qa4tbk">
<inputEntry id="UnaryTests_0h7ex0k">
<text>"Neurosurgery"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1jrc8uu">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ivww3e">
<text>"Mark E. Shaffrey, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1xdcxk9">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1d9vr6b">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1fd2214">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0lce0kt">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1nlp8dp">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1uy1fel">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_194hj7g">
<inputEntry id="UnaryTests_1lmoxki">
<text>"Obstetrics &amp; Gynecology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1d2368t">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0l5nykm">
<text>"James (Jef) E  Ferguson II, MD, MBA"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0jwhpxm">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1391acv">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0si3942">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0d1n3k1">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1i5o5yn">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0dn6xa0">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1feefxw">
<inputEntry id="UnaryTests_1bquriu">
<text>"Ophthalmology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1cvve9k">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0rcmv2x">
<text>"Peter Netland, MD, PhD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0lb9uaq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_063dzsz">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_097bq13">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1pu38e4">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0sea7rb">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0uhn2ma">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0kk6ajr">
<inputEntry id="UnaryTests_0j98tua">
<text>"Orthopedic Surgery"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1jpdhy8">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_14lbprk">
<text>"A. Bobby Chhabra, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_16su4fp">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0br0ljc">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_18tsp9o">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0iytnrt">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1sqb3bn">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_00hwx9m">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1ckz8ox">
<inputEntry id="UnaryTests_1gkxt51">
<text>"Otolaryngology- Head &amp; Neck Surgery"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1jxatpo">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1urdeg3">
<text>"Stephen S. Park, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1puli8h">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_05hanjd">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_05z5vca">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_140631p">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0sg2tkh">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1cco0sk">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_04eribm">
<inputEntry id="UnaryTests_1a11t50">
<text>"Pathology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0kh06ih">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ovk0xq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0dc4w43">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_14xd721">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1w3elof">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0cndgkq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_09cqz3x">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_19ke3cp">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_04do91b">
<inputEntry id="UnaryTests_1hg6qgn">
<text>"Pediatrics"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0wipbsc">
<text>"jpn2r"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1h4gtcc">
<text>"James P. Nataro, MD, PhD, MBA, FAAP"</text>
</outputEntry>
<outputEntry id="LiteralExpression_18uyr1o">
<text>"Chair, Department of Pediatrics"</text>
</outputEntry>
<outputEntry id="LiteralExpression_04ajeps">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_130lm87">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ghciu1">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0ywnhpr">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1lgvui4">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0lb8hi5">
<inputEntry id="UnaryTests_0y76uqi">
<text>"Pharmacology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0zjqu5t">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0xu1r2k">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_12a5zfs">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1t7jwlp">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0c3vy0f">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0mdcrsx">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1hup339">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0mqbucf">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0csfjb9">
<inputEntry id="UnaryTests_0ccnf2c">
<text>"Plastic and Maxillofacial Surgery"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0so2ly5">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_09ynoch">
<text>"Thomas J. Gampper, MD, FACS"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0ized9e">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0i6xbfl">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0ip9317">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1nurrpl">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0cdiqdv">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_12im461">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0ie3f70">
<inputEntry id="UnaryTests_10hi0vn">
<text>"Psychiatry and Neurobehavioral Sciences"</text>
</inputEntry>
<outputEntry id="LiteralExpression_05qrc3z">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1tcqtd0">
<text>"Anita H. Clayton, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_16paqdh">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1lomodj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_128hjyq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ct7zgi">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1g86k3w">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_05bq3ae">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1iavxz0">
<inputEntry id="UnaryTests_1myl3be">
<text>"Public Health Sciences"</text>
</inputEntry>
<outputEntry id="LiteralExpression_0kdn3sp">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ayhurb">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_193gp8u">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0t4xqbq">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1ct3aon">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_11975jk">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0c75zal">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1joannt">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1d7j3pd">
<inputEntry id="UnaryTests_1m7gkcr">
<text>"Radiation Oncology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1xg47wl">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_11ufvnv">
<text>"James M. Larner, MD, FASTRO"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1bm58kb">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1uqjshy">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0pombk0">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0yxaw3s">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_00i47mj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0z7nmmd">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_0gzdz53">
<inputEntry id="UnaryTests_0mo9711">
<text>"Radiology and Medical Imaging"</text>
</inputEntry>
<outputEntry id="LiteralExpression_07shsb0">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1v4defw">
<text>"Alan H. Matsumoto, MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0gqqxxj">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1oowa0l">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0p9rbw9">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1rmnnwe">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1p31rj5">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0zhi6dq">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_1immrvr">
<inputEntry id="UnaryTests_01pmp6n">
<text>"Surgery"</text>
</inputEntry>
<outputEntry id="LiteralExpression_026jlgr">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_01ao8qh">
<text>"Alexander S. Krupnick , MD"</text>
</outputEntry>
<outputEntry id="LiteralExpression_1yqde5y">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0obxa2t">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0tvp046">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0yww9ti">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_19qm59b">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1rjo16e">
<text></text>
</outputEntry>
</rule>
<rule id="DecisionRule_148egsn">
<inputEntry id="UnaryTests_0x77krc">
<text>"Urology"</text>
</inputEntry>
<outputEntry id="LiteralExpression_1xwdb9q">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1qsi7o3">
<text>"Kristen L.Greene, MD, MAS, FACS"</text>
</outputEntry>
<outputEntry id="LiteralExpression_0hi3yzf">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_04tmu5b">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_15ixegr">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_1mjzs1w">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_16wfyws">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_0ehj16p">
<text></text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/1.0" id="Definitions_b2e2651" name="DRD" namespace="http://camunda.org/schema/1.0/dmn">
<decision id="Decision_RO_Dept" name="Responsible Org Department">
<extensionElements>
<biodi:bounds x="300" y="140" width="180" height="80" />
</extensionElements>
<decisionTable id="decisionTable_1">
<input id="input_1" label="RO Same As PIs Primary Department">
<inputExpression id="inputExpression_1" typeRef="boolean">
<text>isRO_SameAsPIsPriDept</text>
</inputExpression>
</input>
<output id="output_1" label="RO School" name="RO_School" typeRef="string" />
<output id="OutputClause_0f6vbck" label="RO Department" name="RO_Department" typeRef="string" />
<rule id="DecisionRule_0e2hvpp">
<description>RO same as PI's Primary Department</description>
<inputEntry id="UnaryTests_1eenh83">
<text>True</text>
</inputEntry>
<outputEntry id="LiteralExpression_1tq8k0h">
<text>pi.E0.schoolName</text>
</outputEntry>
<outputEntry id="LiteralExpression_1g8im4z">
<text>pi.E0.deptName</text>
</outputEntry>
</rule>
<rule id="DecisionRule_04ff0di">
<inputEntry id="UnaryTests_1fsa0de">
<text></text>
</inputEntry>
<outputEntry id="LiteralExpression_0phratv">
<text></text>
</outputEntry>
<outputEntry id="LiteralExpression_13dyeq0">
<text></text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

View File

@ -0,0 +1,65 @@
<?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:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_413aa25" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.0.0-dev">
<bpmn:process id="Process_dbd342e" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_0je7686</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_0je7686" sourceRef="StartEvent_1" targetRef="Activity_08san8i" />
<bpmn:endEvent id="Event_1owauyk">
<bpmn:incoming>Flow_0iah4ly</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0iah4ly" sourceRef="Activity_08san8i" targetRef="Event_1owauyk" />
<bpmn:userTask id="Activity_08san8i" name="Show upload Non-UVA approval letter" camunda:formKey="Non-UVA IRB Approval Letter">
<bpmn:documentation>### This step is Open when:
-"IRB Review Type" Step is Complete and IRB Review Type is 'Full Board', 'Expedited', 'Non-Engaged' or 'Exempt'.
"Compliance Requirements Checklist (by IRB-HSR)" Step is Complete and the question "Non-UVA Institutional Approval" is 'Applicable'.
Compliance Requirement: Certain studies require either the IRB Approval from a non-UVA site or a letter of approval from the institution of a non-UVA site.
**Contact Information:
Name: Eileen Sembrowich Full Board Protocols
Email: ecs3b@virginia.edu
Phone: 434-243-6542
Name: Amy Blackman Expedited Protocols
Email: as5v@virginia.edu
Phone: 434-924-2546
##Process: Upload the applicable document(s) below. The file(s) uploaded here will be automatically included in the submission to the IRB-HSR.</bpmn:documentation>
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="Non-UVA Approval Type_Foreign IRB Approval" label="Foreign IRB Approval" type="boolean" defaultValue="true" />
<camunda:formField id="Non-UVA Approval Type_USA IRB Approval" label="USA IRB Approval" type="boolean" defaultValue="true" />
<camunda:formField id="Non-UVA Approval Type_Institutional Site Approval" label="Institutional Site Approval" type="boolean" defaultValue="true" />
<camunda:formField id="Non-UVA Documentation_Upload" label="Non-UVA IRB Approval Letter" type="File" />
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0je7686</bpmn:incoming>
<bpmn:outgoing>Flow_0iah4ly</bpmn:outgoing>
</bpmn:userTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_dbd342e">
<bpmndi:BPMNEdge id="Flow_0iah4ly_di" bpmnElement="Flow_0iah4ly">
<di:waypoint x="370" y="177" />
<di:waypoint x="432" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0je7686_di" bpmnElement="Flow_0je7686">
<di:waypoint x="215" y="177" />
<di:waypoint x="270" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1owauyk_di" bpmnElement="Event_1owauyk">
<dc:Bounds x="432" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1sdsx38_di" bpmnElement="Activity_08san8i">
<dc:Bounds x="270" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

Binary file not shown.

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/DMN/20151101/dmn.xsd" id="Definitions_0o0ff2r" name="DRD" namespace="http://camunda.org/schema/1.0/dmn" exporter="Camunda Modeler" exporterVersion="3.5.0">
<decision id="decision_ind_update" name="IND Menu Check">
<decisionTable id="decisionTable_1">
<input id="input_1" label="IS_IND">
<inputExpression id="inputExpression_1" typeRef="integer">
<text>details.IS_IND</text>
</inputExpression>
</input>
<output id="output_1" label="Menu Staus" name="ind_update" typeRef="string" />
<rule id="DecisionRule_0h0od2e">
<description>IND in study per PB</description>
<inputEntry id="UnaryTests_09ctq71">
<text>1</text>
</inputEntry>
<outputEntry id="LiteralExpression_1we3duh">
<text>"required"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0gbnvkg">
<description>IND not in study per PB</description>
<inputEntry id="UnaryTests_1enoihd">
<text>0</text>
</inputEntry>
<outputEntry id="LiteralExpression_0r5plb1">
<text>"hidden"</text>
</outputEntry>
</rule>
<rule id="DecisionRule_0zg0u2w">
<description>IND question has not been answered in PB</description>
<inputEntry id="UnaryTests_10f42xe">
<text></text>
</inputEntry>
<outputEntry id="LiteralExpression_0qnqsm5">
<text>"disabled"</text>
</outputEntry>
</rule>
</decisionTable>
</decision>
</definitions>

View File

@ -0,0 +1,144 @@
<?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" id="Definitions_c2698da" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.0.0-dev">
<bpmn:process id="Process_edd0a94" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_04t40px</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_04t40px" sourceRef="StartEvent_1" targetRef="Activity_1jpj09a" />
<bpmn:endEvent id="Event_09hba1p">
<bpmn:incoming>Flow_125mive</bpmn:incoming>
</bpmn:endEvent>
<bpmn:userTask id="Activity_1jpj09a" name="Do Hide" camunda:formKey="My Form">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="showNextField" label="Should I show the next field?" type="boolean" defaultValue="false" />
<camunda:formField id="likeSpam" label="Do you like Spam?" type="boolean">
<camunda:properties>
<camunda:property id="hide_expression" value="showNextField == False" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_04t40px</bpmn:incoming>
<bpmn:outgoing>Flow_0bo5tdr</bpmn:outgoing>
</bpmn:userTask>
<bpmn:sequenceFlow id="Flow_0bo5tdr" sourceRef="Activity_1jpj09a" targetRef="Activity_0otfiwr" />
<bpmn:userTask id="Activity_1npmm8p" name="Do Label Change" camunda:formKey="change_label">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="my_label" label="Set Label for next field" type="string" defaultValue="My Label" />
<camunda:formField id="custom_field" label="Custom Label" type="string">
<camunda:properties>
<camunda:property id="label_expression" value="my_label" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0y96gip</bpmn:incoming>
<bpmn:outgoing>Flow_162wyra</bpmn:outgoing>
</bpmn:userTask>
<bpmn:sequenceFlow id="Flow_162wyra" sourceRef="Activity_1npmm8p" targetRef="Activity_1d5wyyo" />
<bpmn:sequenceFlow id="Flow_1u8z7hs" sourceRef="Activity_1d5wyyo" targetRef="Activity_1btzxi7" />
<bpmn:userTask id="Activity_1d5wyyo" name="Do Value Change" camunda:formKey="change_value">
<bpmn:documentation># Use a default value
This takes the label from the previous form and uses it as the default value in this form. Please note that existing values must exist in the data BEFORE the form is loaded. You can't populate one field with a default property that is set by another field in the same form on the same page.</bpmn:documentation>
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="my_value" type="string">
<camunda:properties>
<camunda:property id="value_expression" value="my_label" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_162wyra</bpmn:incoming>
<bpmn:outgoing>Flow_1u8z7hs</bpmn:outgoing>
</bpmn:userTask>
<bpmn:sequenceFlow id="Flow_0y96gip" sourceRef="Activity_0otfiwr" targetRef="Activity_1npmm8p" />
<bpmn:userTask id="Activity_0otfiwr" name="Do Require" camunda:formKey="required_fields">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="require_next_field" label="Require Next Field?" type="boolean" defaultValue="true" />
<camunda:formField id="my_required_field" label="Required Field" type="string">
<camunda:properties>
<camunda:property id="required_expression" value="require_next_field" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_0bo5tdr</bpmn:incoming>
<bpmn:outgoing>Flow_0y96gip</bpmn:outgoing>
</bpmn:userTask>
<bpmn:sequenceFlow id="Flow_125mive" sourceRef="Activity_1btzxi7" targetRef="Event_09hba1p" />
<bpmn:userTask id="Activity_1btzxi7" name="Do Hide Group" camunda:formKey="repeat_form">
<bpmn:extensionElements>
<camunda:formData>
<camunda:formField id="show_repeat" label="Show Repeating Section?" type="boolean" defaultValue="true" />
<camunda:formField id="first_name" label="First Name" type="string">
<camunda:properties>
<camunda:property id="repeat" value="name" />
<camunda:property id="repeat_title" value="Add People" />
<camunda:property id="repeat_hide_expression" value="show_repeat == False" />
</camunda:properties>
</camunda:formField>
<camunda:formField id="last_name" label="Last Name" type="string">
<camunda:properties>
<camunda:property id="repeat" value="name" />
</camunda:properties>
</camunda:formField>
</camunda:formData>
</bpmn:extensionElements>
<bpmn:incoming>Flow_1u8z7hs</bpmn:incoming>
<bpmn:outgoing>Flow_125mive</bpmn:outgoing>
</bpmn:userTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_edd0a94">
<bpmndi:BPMNEdge id="Flow_125mive_di" bpmnElement="Flow_125mive">
<di:waypoint x="1020" y="177" />
<di:waypoint x="1202" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0y96gip_di" bpmnElement="Flow_0y96gip">
<di:waypoint x="540" y="177" />
<di:waypoint x="600" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_1u8z7hs_di" bpmnElement="Flow_1u8z7hs">
<di:waypoint x="860" y="177" />
<di:waypoint x="920" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_162wyra_di" bpmnElement="Flow_162wyra">
<di:waypoint x="700" y="177" />
<di:waypoint x="760" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0bo5tdr_di" bpmnElement="Flow_0bo5tdr">
<di:waypoint x="370" y="177" />
<di:waypoint x="440" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_04t40px_di" bpmnElement="Flow_04t40px">
<di:waypoint x="215" y="177" />
<di:waypoint x="270" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_09hba1p_di" bpmnElement="Event_09hba1p">
<dc:Bounds x="1202" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_16nmmjp_di" bpmnElement="Activity_1jpj09a">
<dc:Bounds x="270" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0dfquqc_di" bpmnElement="Activity_1npmm8p">
<dc:Bounds x="600" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_1du715a_di" bpmnElement="Activity_1d5wyyo">
<dc:Bounds x="760" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_0w1cduj_di" bpmnElement="Activity_0otfiwr">
<dc:Bounds x="440" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_05v5bh0_di" bpmnElement="Activity_1btzxi7">
<dc:Bounds x="920" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>