-
Notifications
You must be signed in to change notification settings - Fork 3
/
Election Model.bpmn2
2779 lines (2728 loc) · 246 KB
/
Election Model.bpmn2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:ns2="http://www.omg.org/spec/DD/20100524/DI" xmlns:ns3="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:ns4="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="eee_1045467100313_135436_1" name="Election Model" targetNamespace="http://www.omg.org/spec/BPMN/20100524/MODEL" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
<import namespace="mdel://_18_5_1_11940316_1498999818037_96552_21933" location="C:\Users\john\Documents\GitHub\ElectionModeling\MagicDraw Election Model.xml" importType="com.nomagic.cbm"/>
<import namespace="mdel://_18_5_1_11940316_1498828643817_94789_23277" location="C:\Users\john\Documents\GitHub\ElectionModeling\MagicDraw Election Model.xml" importType="com.nomagic.cbm"/>
<resource name="Poll Worker" id="_18_5_1_11940316_1498828652641_269229_23308">
<documentation textFormat="text/plain">A part-time worker that is trained by the election jurisdiction to perform a particular set of tasks on election day, such as checking in voters, or issuing ballots.</documentation>
<resourceParameter name="" type="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1501765539156_214921_31721"/>
</resource>
<resource name="Voter" id="_18_5_1_11940316_1498828669742_83683_23366">
<resourceParameter name="" type="_18_5_1_11940316_1501089068915_624055_29001" id="_18_5_1_11940316_1501765525160_510460_31700"/>
</resource>
<resource name="Address Management System" id="_18_5_1_11940316_1498999872536_984458_21962">
<resourceParameter name="" type="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1499088391377_168800_22167"/>
</resource>
<resource name="Resident" id="_18_5_1_11940316_1500064569910_373836_23754">
<documentation textFormat="text/plain">An individual that has established residency at a fixed location.</documentation>
</resource>
<resource name="Interested Party" id="_18_5_1_11940316_1500581627517_267564_37353">
<documentation textFormat="text/plain">An person or organization that is interested in the operation or outcome of an election.</documentation>
</resource>
<resource name="Electoral System" id="_18_5_1_11940316_1501089068915_624055_29001">
<resourceParameter name="" type="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1501089558726_66270_29053"/>
<resourceParameter name="" type="_18_5_1_11940316_1498828669742_83683_23366" id="_18_5_1_11940316_1501765525158_620139_31699"/>
<resourceParameter name="" type="_18_5_2_11940316_1504019276391_520370_29552" id="_18_5_2_11940316_1505996080600_93336_40748"/>
<resourceParameter name="" type="_18_5_2_11940316_1504019996184_656170_29884" id="_18_5_2_11940316_1505996092418_965903_40769"/>
</resource>
<resource name="Authorized Personnel" id="_18_5_1_11940316_1501096470365_163806_30704">
<documentation textFormat="text/plain">An individual of group of individuals authorized to perform actions on behalf of the election jurisdiction.</documentation>
<resourceParameter name="" type="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1501765563548_789737_31742"/>
</resource>
<resource name="Applicant" id="_18_5_1_11940316_1501593348755_749813_40372">
<documentation textFormat="text/plain">An individual who applies to receive an election service.</documentation>
</resource>
<resource name="Printer" id="_18_5_1_11940316_1502307706264_466844_34409">
<documentation textFormat="text/plain">A role or organization responsible for the printing of documents, such as ballots.</documentation>
</resource>
<resource name="Candidate" id="_18_5_2_11940316_1504019276391_520370_29552">
<documentation textFormat="text/plain">An individual who may appear on a ballot for election to office.</documentation>
<resourceParameter name="" type="_18_5_1_11940316_1501089068915_624055_29001" id="_18_5_2_11940316_1505996080601_213959_40749"/>
</resource>
<resource name="Political Party" id="_18_5_2_11940316_1504019996184_656170_29884">
<resourceParameter name="" type="_18_5_1_11940316_1501089068915_624055_29001" id="_18_5_2_11940316_1505996092420_110504_40770"/>
</resource>
<resource name="Submitting Entity" id="_18_5_2_11940316_1504020179240_478096_29942">
<documentation textFormat="text/plain">An entity authorized to submit documents (e.g. candidate eligibility documents) on its own or another’s behalf.</documentation>
</resource>
<resource name="Court" id="_18_5_2_11940316_1504020297629_653706_29993">
<documentation textFormat="text/plain"> An entity that provides records related to felony convictions, adjudications regarding competency, among others.</documentation>
</resource>
<resource name="Electronic Poll Book" id="_18_5_2_11940316_1504814392220_26705_31117">
<resourceParameter name="" type="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_2_11940316_1504814415183_571767_31169"/>
</resource>
<resource name="Delivery Service" id="_18_5_2_11940316_1506098663212_166050_36305"/>
<resource name="Motor Vehicle Authority" id="_18_5_2_43701b0_1513030927477_421698_41611"/>
<dataStore name="Voter Registration Database" isUnlimited="false" id="_18_5_1_11940316_1498143971000_592173_21342"/>
<dataStore name="Voter Record" isUnlimited="false" id="_18_5_1_11940316_1499089049215_588855_22680"/>
<dataStore name="Voter Record" isUnlimited="false" id="_18_5_1_11940316_1499264717288_855607_22978"/>
<dataStore name="Address Records" isUnlimited="false" id="_18_5_1_11940316_1500472861307_215878_29138"/>
<dataStore name="Election Specific Eligible Voter List" isUnlimited="false" id="_18_5_1_11940316_1500476453742_710032_29374"/>
<dataStore name="Voter Registration Database" isUnlimited="false" id="_18_5_1_11940316_1500557397670_188099_33740"/>
<dataStore name="Ballot Tracking System" isUnlimited="false" id="_18_5_1_11940316_1500575746749_157073_35765"/>
<dataStore name="Tally Database" isUnlimited="false" id="_18_5_1_11940316_1500582485846_499914_37452"/>
<dataStore name="Ballot Tracking System" isUnlimited="false" id="_18_5_1_11940316_1501695325814_296626_26484"/>
<dataStore name="Voter Record" isUnlimited="false" id="_18_5_1_11940316_1501771963631_453942_32151"/>
<dataStore name="Laid Out Ballot Styles" isUnlimited="false" id="_18_5_1_11940316_1502307577438_389905_34214"/>
<dataStore name="Presentable Ballot Styles" isUnlimited="false" id="_18_5_1_11940316_1502912896431_681895_27536"/>
<dataStore name="Voter Record" isUnlimited="false" id="_18_5_1_11940316_1503186415517_591465_33250"/>
<dataStore name="EMS Configurations" isUnlimited="false" id="_18_5_1_11940316_1503518306021_516837_61677"/>
<dataStore name="List of Contests" isUnlimited="false" id="_18_5_2_11940316_1504182991464_205499_43252"/>
<dataStore name="Precinct and District Boundaries" isUnlimited="false" id="_18_5_2_11940316_1504882858846_630364_31421"/>
<dataStore name="Qualified Contests" isUnlimited="false" id="_18_5_2_11940316_1504882901159_736546_31453"/>
<dataStore name="Election Management System" isUnlimited="false" id="_18_5_2_11940316_1505837490854_724754_34112"/>
<dataStore name="Legal Documents" isUnlimited="false" id="_18_5_2_11940316_1506375688143_993959_43392"/>
<dataStore name="Election Date and Deadlines" isUnlimited="false" id="_18_5_2_11940316_1506428516205_988928_43518"/>
<dataStore name="Voter Records" isUnlimited="false" id="_18_5_2_11940316_1506428778750_554922_43620"/>
<dataStore name="Ballot Styles" isUnlimited="false" id="_18_5_2_11940316_1506429778783_535792_44138"/>
<dataStore name="Voter Record" isUnlimited="false" id="_18_5_2_11940316_1506630575461_91305_29418"/>
<dataStore name="Voting Machine Allocation" isUnlimited="false" id="_18_5_2_11940316_1506692734462_544164_30525"/>
<dataStore name="List of Registered Voters" isUnlimited="false" id="_18_5_2_11940316_1506965234064_138255_32261"/>
<dataStore name="Activated Voting Precincts" isUnlimited="false" id="_18_5_2_11940316_1506965487361_173667_32325"/>
<dataStore name="Ballot Styles" isUnlimited="false" id="_18_5_2_11940316_1506969259396_846447_32474"/>
<dataStore name="Geography" isUnlimited="false" id="_18_5_2_11940316_1506969278321_263002_32506"/>
<dataStore name="Election Specific Eligible Voter List" isUnlimited="false" id="_18_5_2_43701b0_1509375884407_153269_39193"/>
<dataStore name="" isUnlimited="false" id="_18_5_2_43701b0_1510778046678_126063_29842"/>
<message name="Voter Registration Documents" id="_18_5_1_11940316_1499273755724_771593_23983">
<documentation textFormat="text/plain">A payload representing a voter registration, plus any additional required documents (e.g. identification, proof of citizenship, etc.).</documentation>
</message>
<message name="Clarification Request" id="_18_5_1_11940316_1499274158202_39386_24041"/>
<message name="Clarification Response" id="_18_5_1_11940316_1499274467491_913996_24074"/>
<message name="Negative Disposition Notice" id="_18_5_1_11940316_1499274567293_618558_24119"/>
<message name="Confirmation Request" id="_18_5_1_11940316_1500071422627_673850_24227"/>
<message name="Confirmation Response" id="_18_5_1_11940316_1500071453265_199067_24245"/>
<message name="Removal Notice" id="_18_5_1_11940316_1500071622998_395382_24267"/>
<message name="Response" id="_18_5_1_11940316_1500475026075_793153_29232"/>
<message name="Request to Vote" id="_18_5_1_11940316_1500557245570_859748_33589"/>
<message name="Vote by mail package" id="_18_5_1_11940316_1500559481382_56985_34530"/>
<message name="Ballot" id="_18_5_1_11940316_1500640542704_174255_39081"/>
<message name="Results Request" id="_18_5_1_11940316_1500640627255_40869_39127"/>
<message name="Election Results" id="_18_5_1_11940316_1500640654579_83437_39145"/>
<message name="Removal Notice" id="_18_5_1_11940316_1500665678448_955463_30935"/>
<message name="Confirmation Notice" id="_18_5_1_11940316_1501019764745_411070_25979"/>
<message name="Confirmation Response" id="_18_5_1_11940316_1501019786583_55527_25997"/>
<message name="Election Materials" id="_18_5_1_11940316_1501091379686_108336_29243"/>
<message name="Where are you?" id="_18_5_1_11940316_1501091505298_634809_29309"/>
<message name="Ballot Package" id="_18_5_1_11940316_1501803661543_815853_33160"/>
<message name="Clarification Request" id="_18_5_1_11940316_1501803735311_524444_33178"/>
<message name="Clarification Response" id="_18_5_1_11940316_1501803756899_396306_33196"/>
<message name="Acknowledgment Notice" id="_18_5_1_11940316_1501803856525_465657_33214"/>
<message name="Ballot Styles and Order" id="_18_5_1_11940316_1502383474653_691214_37410"/>
<message name="Ballot Proofs" id="_18_5_1_11940316_1502383525093_787339_37428"/>
<message name="Corrections" id="_18_5_1_11940316_1502383589568_847009_37446"/>
<message name="Print Request" id="_18_5_1_11940316_1502384275956_79912_37469"/>
<message name="Printed Ballots" id="_18_5_1_11940316_1502384605214_995178_37522"/>
<message name="Qualifying Documents" id="_18_5_2_11940316_1504019609150_584509_29626"/>
<message name="Receipt" id="_18_5_2_11940316_1504118983242_962928_35917"/>
<message name="Notification" id="_18_5_2_11940316_1505319390239_699846_35537"/>
<message name="Positive Disposition Notice" id="_18_5_2_11940316_1506628452423_81495_29235"/>
<message name="Request" id="_18_5_2_11940316_1506631395467_679434_29467"/>
<message name="Retrieval Request" id="_18_5_2_43701b0_1511791448372_279107_51195"/>
<message name="Notice" id="_18_5_2_43701b0_1513786613958_597140_38032"/>
<message name="Request Identification" id="_18_5_3_43701b0_1515520646468_686873_32048"/>
<message name="Unvoted Ballot" id="_18_5_3_43701b0_1515522844354_256767_32459"/>
<message name="Insist on Voting" id="_18_5_3_43701b0_1515522844355_191465_32463"/>
<message name="Returned Ballot" id="_18_5_3_43701b0_1515522844355_287111_32460"/>
<message name="Accept Directions" id="_18_5_3_43701b0_1515522844355_945865_32462"/>
<message name="Directions" id="_18_5_3_43701b0_1515522844355_968808_32461"/>
<message name="Request to Vote" id="_18_5_3_43701b0_1515522844356_990277_32464"/>
<message name="Instructions" id="_18_5_3_43701b0_1520286653739_116414_42859"/>
<message name="Identification" id="_18_5_3_43701b0_1520287428705_291881_42914"/>
<message name="No Identification" id="_18_5_3_43701b0_1520287866358_78520_42934"/>
<collaboration name="Election Conversations" isClosed="false" id="_18_5_1_11940316_1502119377158_903_31932">
<conversationLink name="" sourceRef="_18_5_1_11940316_1502119461337_179587_31986" targetRef="_18_5_1_11940316_1502119531550_781417_32001" id="_18_5_1_11940316_1502119545883_996314_32020"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502119531550_781417_32001" targetRef="_18_5_1_11940316_1502119430712_418180_31953" id="_18_5_1_11940316_1502119550044_224162_32026"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502121050492_260790_32100" targetRef="_18_5_1_11940316_1502119430712_418180_31953" id="_18_5_1_11940316_1502121067264_731920_32120"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502121050492_260790_32100" targetRef="_18_5_1_11940316_1502121031749_968073_32085" id="_18_5_1_11940316_1502121069927_834805_32126"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502121677575_814159_32136" targetRef="_18_5_1_11940316_1502119531550_781417_32001" id="_18_5_1_11940316_1502121686191_341300_32152"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122328493_642250_32206" targetRef="_18_5_1_11940316_1502119430712_418180_31953" id="_18_5_1_11940316_1502122353029_357512_32227"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122328493_642250_32206" targetRef="_18_5_1_11940316_1502122222534_381057_32159" id="_18_5_1_11940316_1502122359639_363222_32233"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122328493_642250_32206" targetRef="_18_5_1_11940316_1502121677575_814159_32136" id="_18_5_1_11940316_1502122367188_339672_32239"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122532860_140169_32245" targetRef="_18_5_1_11940316_1502122222534_381057_32159" id="_18_5_1_11940316_1502122545502_317190_32266"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122532860_140169_32245" targetRef="_18_5_1_11940316_1502119430712_418180_31953" id="_18_5_1_11940316_1502122555917_542583_32272"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122603485_413122_32294" targetRef="_18_5_1_11940316_1502119430712_418180_31953" id="_18_5_1_11940316_1502122618819_144647_32314"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122603485_413122_32294" targetRef="_18_5_1_11940316_1502122587347_992208_32279" id="_18_5_1_11940316_1502122622418_99859_32320"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122760087_611348_32326" targetRef="_18_5_1_11940316_1502122222534_381057_32159" id="_18_5_1_11940316_1502122770670_59978_32346"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122760087_611348_32326" targetRef="_18_5_1_11940316_1502121031749_968073_32085" id="_18_5_1_11940316_1502122774736_494116_32352"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122846425_652005_32357" targetRef="_18_5_1_11940316_1502122222534_381057_32159" id="_18_5_1_11940316_1502122886873_994037_32377"/>
<conversationLink name="" sourceRef="_18_5_1_11940316_1502122846425_652005_32357" targetRef="_18_5_1_11940316_1502119430712_418180_31953" id="_18_5_1_11940316_1502122890373_777283_32383"/>
</collaboration>
<collaboration name="__CONTAINER__COLLABORATION__">
<messageFlow name="" sourceRef="_18_5_1_11940316_1500064717108_476573_23855" targetRef="_18_5_1_11940316_1500064596674_302035_23782" messageRef="_18_5_1_11940316_1500071422627_673850_24227" id="_18_5_1_11940316_1500064782811_394552_23889"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500064596674_302035_23782" targetRef="_18_5_1_11940316_1500064717108_476573_23855" messageRef="_18_5_1_11940316_1500071453265_199067_24245" id="_18_5_1_11940316_1500064798534_126099_23895"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500065444316_153135_24035" targetRef="_18_5_1_11940316_1500064596674_302035_23782" messageRef="_18_5_1_11940316_1500071622998_395382_24267" id="_18_5_1_11940316_1500065473239_575419_24050"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1499264717289_132639_22981" targetRef="_18_5_1_11940316_1500665602935_854357_30918" messageRef="_18_5_1_11940316_1500665678448_955463_30935" id="_18_5_1_11940316_1500665658329_400619_30933"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1499863774581_708516_24841" targetRef="_18_5_1_11940316_1501015994140_731116_25390" messageRef="_18_5_1_11940316_1501019764745_411070_25979" id="_18_5_1_11940316_1501016117263_733995_25430"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501015994140_731116_25390" targetRef="_18_5_1_11940316_1501016220746_749357_25491" messageRef="_18_5_1_11940316_1501019786583_55527_25997" id="_18_5_1_11940316_1501016233824_84023_25516"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501785439048_180514_32921" targetRef="_18_5_1_11940316_1501785393155_431077_32898" messageRef="_18_5_1_11940316_1501803856525_465657_33214" id="_18_5_1_11940316_1501785483113_562029_32953"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501785439048_180514_32921" targetRef="_18_5_1_11940316_1501785393155_431077_32898" messageRef="_18_5_1_11940316_1501803856525_465657_33214" id="_18_5_1_11940316_1501859265582_26926_26351"/>
<messageFlow name="" sourceRef="_18_5_2_43701b0_1513030801275_663471_41294" targetRef="_18_5_2_43701b0_1513030944797_661866_41639" id="_18_5_2_43701b0_1513030962411_217400_41657"/>
<messageFlow name="" sourceRef="_18_5_2_43701b0_1513030944797_661866_41639" targetRef="_18_5_2_43701b0_1513030912254_574635_41600" id="_18_5_2_43701b0_1513030970710_759164_41663"/>
<messageFlow name="" sourceRef="_18_5_2_43701b0_1513032695912_464331_41721" targetRef="_18_5_2_43701b0_1513030944797_661866_41639" id="_18_5_3_43701b0_1521485409120_864667_31446"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1502829240162_907768_41659" targetRef="_18_5_1_11940316_1498141084832_846681_20653" messageRef="_18_5_2_11940316_1506628452423_81495_29235" id="_18_5_1_11940316_1498150981542_658363_21477"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1498141084832_846681_20653" targetRef="_18_5_1_11940316_1498141060496_347838_20632" messageRef="_18_5_1_11940316_1499273755724_771593_23983" id="_18_5_1_11940316_1498141110742_820073_20673"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1498141330046_659664_20851" targetRef="_18_5_1_11940316_1498141084832_846681_20653" messageRef="_18_5_1_11940316_1499274158202_39386_24041" id="_18_5_1_11940316_1498141528735_292037_20880"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1498141084832_846681_20653" targetRef="_18_5_1_11940316_1498141330046_659664_20851" messageRef="_18_5_1_11940316_1499274467491_913996_24074" id="_18_5_1_11940316_1498141533946_46942_20886"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1498143466471_551844_20989" targetRef="_18_5_1_11940316_1498141084832_846681_20653" messageRef="_18_5_1_11940316_1499274567293_618558_24119" id="_18_5_1_11940316_1498143515749_149810_21011"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1499866659906_861749_25590" targetRef="_18_5_1_11940316_1500473081546_937014_29182" messageRef="_18_5_2_11940316_1506631395467_679434_29467" id="_18_5_1_11940316_1500473112073_517465_29203"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500473081546_937014_29182" targetRef="_18_5_1_11940316_1499866659906_861749_25590" messageRef="_18_5_1_11940316_1500475026075_793153_29232" id="_18_5_1_11940316_1500473130294_165662_29209"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1502307498053_792233_34159" targetRef="_18_5_1_11940316_1502307778930_55739_34452" messageRef="_18_5_1_11940316_1502383474653_691214_37410" id="_18_5_1_11940316_1502307825902_802795_34466"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1502307778930_55739_34452" targetRef="_18_5_1_11940316_1502307832718_174940_34474" messageRef="_18_5_1_11940316_1502383525093_787339_37428" id="_18_5_1_11940316_1502307859416_878028_34503"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1502308238443_49613_34570" targetRef="_18_5_1_11940316_1502307778930_55739_34452" messageRef="_18_5_1_11940316_1502383589568_847009_37446" id="_18_5_1_11940316_1502308297214_216478_34595"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1502308494536_906684_34682" targetRef="_18_5_1_11940316_1502307778930_55739_34452" messageRef="_18_5_1_11940316_1502384275956_79912_37469" id="_18_5_1_11940316_1502308641875_194467_34776"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1502307778930_55739_34452" targetRef="_18_5_1_11940316_1502384526315_604494_37498" messageRef="_18_5_1_11940316_1502384605214_995178_37522" id="_18_5_1_11940316_1502308647691_940638_34782"/>
<messageFlow name="" sourceRef="_18_5_2_11940316_1504020211282_713506_29976" targetRef="_18_5_2_11940316_1504019467502_580498_29610" messageRef="_18_5_2_11940316_1504019609150_584509_29626" id="_18_5_2_11940316_1504019487496_949814_29624"/>
<messageFlow name="" sourceRef="_18_5_2_11940316_1504020532456_767469_30121" targetRef="_18_5_2_11940316_1504020211282_713506_29976" messageRef="_18_5_2_11940316_1504118983242_962928_35917" id="_18_5_2_11940316_1504021190920_606127_30335"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515008991997_46016_30501" targetRef="_18_5_3_43701b0_1515520646458_152628_32041" messageRef="_18_5_3_43701b0_1520287428705_291881_42914" id="_18_5_3_43701b0_1515520894199_297891_32267"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515008991997_46016_30501" targetRef="_18_5_3_43701b0_1515520646464_124393_32045" messageRef="_18_5_3_43701b0_1520287866358_78520_42934" id="_18_5_3_43701b0_1515520899634_405191_32273"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515520646454_33576_32040" targetRef="_18_5_3_43701b0_1515008991997_46016_30501" messageRef="_18_5_3_43701b0_1515520646468_686873_32048" id="_18_5_3_43701b0_1515521361392_514676_32307"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844356_120818_32467" targetRef="_18_5_3_43701b0_1515522844363_966619_32501" messageRef="_18_5_3_43701b0_1515522844354_256767_32459" id="_18_5_3_43701b0_1515522844364_294264_32503"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844357_426271_32471" targetRef="_18_5_3_43701b0_1515522844363_966619_32501" messageRef="_18_5_3_43701b0_1515522844355_968808_32461" id="_18_5_3_43701b0_1515522844364_44240_32507"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515522844356_552625_32468" messageRef="_18_5_3_43701b0_1515522844355_287111_32460" id="_18_5_3_43701b0_1515522844374_553656_32547"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515522844357_88581_32472" messageRef="_18_5_3_43701b0_1515522844355_945865_32462" id="_18_5_3_43701b0_1515522844375_978952_32553"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515522844357_602139_32473" messageRef="_18_5_3_43701b0_1515522844355_191465_32463" id="_18_5_3_43701b0_1515522844375_317355_32555"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515522844361_793284_32488" messageRef="_18_5_3_43701b0_1515522844356_990277_32464" id="_18_5_3_43701b0_1515522844377_748727_32571"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515522844361_932819_32491" messageRef="_18_5_3_43701b0_1515522844355_191465_32463" id="_18_5_3_43701b0_1515522844377_652417_32575"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515523495746_703835_33745" messageRef="_18_5_3_43701b0_1515522844355_287111_32460" id="_18_5_3_43701b0_1515617004483_62181_42519"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515522844363_966619_32501" targetRef="_18_5_3_43701b0_1515617441374_603857_42623" id="_18_5_3_43701b0_1515617459637_756621_42638"/>
<messageFlow name="" sourceRef="_18_5_3_43701b0_1515617649627_510255_42706" targetRef="_18_5_3_43701b0_1515522844363_966619_32501" messageRef="_18_5_3_43701b0_1520286653739_116414_42859" id="_18_5_3_43701b0_1515617689329_71020_42737"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500557162555_115326_33540" targetRef="_18_5_1_11940316_1500557216084_29274_33572" messageRef="_18_5_1_11940316_1500557245570_859748_33589" id="_18_5_1_11940316_1500557231815_910848_33587"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500559449474_215319_34491" targetRef="_18_5_1_11940316_1500559429398_312874_34472" messageRef="_18_5_1_11940316_1500559481382_56985_34530" id="_18_5_1_11940316_1500559471896_308145_34528"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500576068691_548518_36061" targetRef="_18_5_1_11940316_1500575848961_153208_35830" messageRef="_18_5_2_11940316_1505319390239_699846_35537" id="_18_5_1_11940316_1500576135400_299254_36149"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500576051379_836664_36019" targetRef="_18_5_1_11940316_1500575848961_153208_35830" messageRef="_18_5_1_11940316_1500640542704_174255_39081" id="_18_5_1_11940316_1500576231226_219593_36191"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500576097350_173832_36098" targetRef="_18_5_1_11940316_1500575848961_153208_35830" messageRef="_18_5_1_11940316_1500640542704_174255_39081" id="_18_5_1_11940316_1500576271815_917252_36197"/>
<messageFlow name="" sourceRef="_18_5_2_43701b0_1510174762523_553577_32326" targetRef="_18_5_1_11940316_1500557162555_115326_33540" messageRef="_18_5_2_43701b0_1513786613958_597140_38032" id="_18_5_2_43701b0_1510174788161_80996_32361"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500575848961_153208_35830" targetRef="_18_5_1_11940316_1500576119877_461179_36125" messageRef="_18_5_2_43701b0_1511791448372_279107_51195" id="_18_5_2_43701b0_1511384587527_402655_53331"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500576119877_461179_36125" targetRef="_18_5_1_11940316_1500575848961_153208_35830" messageRef="_18_5_1_11940316_1500640542704_174255_39081" id="_18_5_2_43701b0_1511791409462_195450_51193"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500581652948_165547_37391" targetRef="_18_5_1_11940316_1500582438625_776654_37436" messageRef="_18_5_1_11940316_1500640627255_40869_39127" id="_18_5_1_11940316_1500582430591_405258_37429"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500582749515_454951_37629" targetRef="_18_5_1_11940316_1500581652948_165547_37391" messageRef="_18_5_1_11940316_1500640654579_83437_39145" id="_18_5_1_11940316_1500582768142_296753_37644"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501694356414_390961_25960" targetRef="_18_5_1_11940316_1501694409888_748592_25992" messageRef="_18_5_1_11940316_1501803661543_815853_33160" id="_18_5_1_11940316_1501694420502_619531_26007"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501694544086_914833_26068" targetRef="_18_5_1_11940316_1501694356414_390961_25960" messageRef="_18_5_1_11940316_1501803735311_524444_33178" id="_18_5_1_11940316_1501694851625_973585_26155"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501694356414_390961_25960" targetRef="_18_5_1_11940316_1501694544086_914833_26068" messageRef="_18_5_1_11940316_1501803756899_396306_33196" id="_18_5_1_11940316_1501694859512_705653_26161"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1500584674631_49220_38540" targetRef="_18_5_2_43701b0_1511287007482_959087_29174" id="_18_5_2_43701b0_1511287034506_567289_29190"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501091165358_303275_29131" targetRef="_18_5_1_11940316_1501091643281_140134_29336" messageRef="_18_5_1_11940316_1501091379686_108336_29243" id="_18_5_1_11940316_1501091369251_933003_29241"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501091471074_49691_29276" targetRef="_18_5_1_11940316_1501091165358_303275_29131" messageRef="_18_5_1_11940316_1501091505298_634809_29309" id="_18_5_1_11940316_1501091499515_299120_29307"/>
<messageFlow name="" sourceRef="_18_5_1_11940316_1501091165358_303275_29131" targetRef="_18_5_1_11940316_1501097645518_616416_30754" messageRef="_18_5_1_11940316_1501091379686_108336_29243" id="_18_5_1_11940316_1501097657327_450020_30778"/>
</collaboration>
<process isClosed="false" isExecutable="false" name="Register Voter" id="_18_5_1_11940316_1498140978087_930388_20553">
<documentation textFormat="text/plain">For states requiring registration in order to vote, register a voter such that their name appears on the list of eligible voters for the next election for which the voter is qualified.</documentation>
<laneSet id="_18_5_1_11940316_1498141084832_846681_20653_Ref-1_laneSet">
<lane name="Applicant" partitionElementRef="_18_5_1_11940316_1501593348755_749813_40372" id="_18_5_1_11940316_1498141084832_846681_20653"/>
</laneSet>
<laneSet id="_18_5_1_11940316_1498140996278_551314_20598_Ref-1_laneSet">
<lane name="Election Authority" partitionElementRef="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1498140996278_551314_20598">
<flowNodeRef>_18_5_1_11940316_1498140984132_146266_20578</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498141060496_347838_20632</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498141289985_196329_20829</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498141330046_659664_20851</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143294447_290387_20898</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143349395_364410_20923</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143420234_59697_20959</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143466471_551844_20989</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143691821_318760_21071</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498150769693_118362_21401</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143631469_397942_21043</flowNodeRef>
<flowNodeRef>_18_5_2_11940316_1505413630092_528067_36288</flowNodeRef>
<flowNodeRef>_18_5_2_11940316_1505414637266_476930_36343</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1498143959537_550265_21323</flowNodeRef>
<flowNodeRef>_18_5_2_11940316_1505663498276_543596_51596</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1502833880535_560922_41834</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1502829812539_91609_41751</flowNodeRef>
<flowNodeRef>_18_5_2_11940316_1506108858628_37050_36724</flowNodeRef>
<flowNodeRef>_18_5_2_11940316_1506108935607_291195_36746</flowNodeRef>
</lane>
</laneSet>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Check for completeness" id="_18_5_1_11940316_1498140984132_146266_20578">
<documentation textFormat="text/plain">Determine if the registration meets syntactic requirements - that it is prima facie valid.</documentation>
<incoming>_18_5_1_11940316_1498141066508_277596_20650</incoming>
<incoming>_18_5_1_11940316_1498143589637_624203_21021</incoming>
<outgoing>_18_5_1_11940316_1498141290005_710633_20839</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-1"/>
<resourceRole name="" id="_18_5_2_11940316_1505762460964_211779_33215_Ref-1"/>
</task>
<startEvent isInterrupting="true" name="Receive voter registration" id="_18_5_1_11940316_1498141060496_347838_20632">
<outgoing>_18_5_1_11940316_1498141066508_277596_20650</outgoing>
<messageEventDefinition id="_18_5_1_11940316_1498141060496_347838_20632_Ref-1"/>
</startEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Registration complete?" id="_18_5_1_11940316_1498141289985_196329_20829">
<incoming>_18_5_1_11940316_1498141290005_710633_20839</incoming>
<outgoing>_18_5_1_11940316_1498141330077_888561_20860</outgoing>
<outgoing>_18_5_1_11940316_1498143294479_310508_20908</outgoing>
</exclusiveGateway>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Clarify with applicant" id="_18_5_1_11940316_1498141330046_659664_20851">
<documentation textFormat="text/plain">The applicant may be contacted to resolve an issue in the voter registration documents provided.</documentation>
<incoming>_18_5_1_11940316_1498141330077_888561_20860</incoming>
<incoming>_18_5_1_11940316_1498143381041_813291_20946</incoming>
<outgoing>_18_5_1_11940316_1498143420258_984255_20968</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-2"/>
</task>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Verify applicant's personal and residence information" id="_18_5_1_11940316_1498143294447_290387_20898">
<documentation textFormat="text/plain">Verify that the applicant's personal and residence information meets the requirements to register to vote. For example, the date of birth may be verified to meet an age based eligibility requirement.</documentation>
<incoming>_18_5_1_11940316_1498143294479_310508_20908</incoming>
<outgoing>_18_5_1_11940316_1498143349418_508410_20932</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-3"/>
<resourceRole name="" id="_18_5_2_11940316_1505762460964_211779_33215_Ref-2"/>
</task>
<exclusiveGateway gatewayDirection="Unspecified" name="Clarification required?" id="_18_5_1_11940316_1498143349395_364410_20923">
<incoming>_18_5_1_11940316_1498143349418_508410_20932</incoming>
<outgoing>_18_5_1_11940316_1498143381041_813291_20946</outgoing>
<outgoing>_18_5_1_11940316_1498150769722_660994_21410</outgoing>
</exclusiveGateway>
<exclusiveGateway gatewayDirection="Unspecified" name="Resolvable?" id="_18_5_1_11940316_1498143420234_59697_20959">
<incoming>_18_5_1_11940316_1498143420258_984255_20968</incoming>
<outgoing>_18_5_1_11940316_1498143589637_624203_21021</outgoing>
<outgoing>_18_5_1_11940316_1498143600569_482466_21032</outgoing>
</exclusiveGateway>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Notify applicant of ineligibility" id="_18_5_1_11940316_1498143466471_551844_20989">
<documentation textFormat="text/plain">If the election jurisdiction determines the applicant ineligible to register to vote, the applicant may be notified.</documentation>
<incoming>_18_5_1_11940316_1498143600569_482466_21032</incoming>
<incoming>_18_5_1_11940316_1498150797572_75979_21429</incoming>
<outgoing>_18_5_1_11940316_1498143691838_687146_21076</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-4"/>
</task>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Create or update voter record" id="_18_5_1_11940316_1498143631469_397942_21043">
<documentation textFormat="text/plain">Depending on whether the registration applies to an existing voter registration record or is a new registration, update the voter registration database to reflect the acceptance of the record.</documentation>
<incoming>_18_5_1_11940316_1498150822828_392006_21441</incoming>
<outgoing>_18_5_2_11940316_1505663531637_230212_51614</outgoing>
<property name="Create or update voter record_pin_out" id="_18_5_1_11940316_1498143631469_397942_21043_pin_out"/>
<property name="Create or update voter record_pin_in" id="_18_5_1_11940316_1498143631469_397942_21043_pin_in"/>
<dataInputAssociation id="_18_5_1_11940316_1499457235631_659408_25368">
<sourceRef>_18_5_1_11940316_1498143971000_592173_21342</sourceRef>
<targetRef>_18_5_1_11940316_1498143631469_397942_21043_pin_out</targetRef>
</dataInputAssociation>
<dataOutputAssociation id="_18_5_1_11940316_1498143988300_727808_21369">
<sourceRef>_18_5_1_11940316_1498143631469_397942_21043_pin_in</sourceRef>
<targetRef>_18_5_1_11940316_1498143971000_592173_21342</targetRef>
</dataOutputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-5"/>
<resourceRole name="" id="_18_5_2_11940316_1505762460964_211779_33215_Ref-3"/>
</task>
<endEvent name="No Action" id="_18_5_1_11940316_1498143691821_318760_21071">
<incoming>_18_5_1_11940316_1498143691838_687146_21076</incoming>
<incoming>_18_5_1_11940316_1499107810193_756369_23481</incoming>
</endEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Eligible to register?" id="_18_5_1_11940316_1498150769693_118362_21401">
<incoming>_18_5_1_11940316_1498150769722_660994_21410</incoming>
<outgoing>_18_5_1_11940316_1498150797572_75979_21429</outgoing>
<outgoing>_18_5_1_11940316_1498150822828_392006_21441</outgoing>
</exclusiveGateway>
<boundaryEvent cancelActivity="true" attachedToRef="_18_5_1_11940316_1498141330046_659664_20851" name="Takes too Long" id="_18_5_1_11940316_1499107780468_82324_23457">
<outgoing>_18_5_1_11940316_1499107810193_756369_23481</outgoing>
<timerEventDefinition id="_18_5_1_11940316_1499107780468_82324_23457_Ref-1"/>
</boundaryEvent>
<intermediateCatchEvent parallelMultiple="false" name="Turn 18 or Eligible to Vote" id="_18_5_2_11940316_1505413630092_528067_36288">
<incoming>_18_5_2_11940316_1505413631482_514713_36300</incoming>
<outgoing>_18_5_2_11940316_1505414945320_184675_36505</outgoing>
</intermediateCatchEvent>
<subProcess triggeredByEvent="true" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Send Notice of Registration" id="_18_5_2_11940316_1505414637266_476930_36343">
<documentation textFormat="text/plain">Send a notice to the voter indicating their registration status.</documentation>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-6"/>
<startEvent isInterrupting="false" name="Send Notice" id="_18_5_2_11940316_1505418581530_23717_36568">
<outgoing>_18_5_2_11940316_1505418594912_448130_36584</outgoing>
<signalEventDefinition id="_18_5_2_11940316_1505418581530_23717_36568_Ref-1"/>
</startEvent>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Notify Voter of Registration" id="_18_5_1_11940316_1502829240162_907768_41659">
<documentation textFormat="text/plain">Send a positive disposition notice. This notice may include such details as the voter’s polling location, voting districts, and voter identification requirements.</documentation>
<incoming>_18_5_2_11940316_1505418594912_448130_36584</incoming>
<outgoing>_18_5_2_11940316_1506102970913_543454_36633</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-7"/>
</task>
<intermediateCatchEvent name="Waiting Period" id="_18_5_2_11940316_1506102969629_509633_36621">
<incoming>_18_5_2_11940316_1506102970913_543454_36633</incoming>
<outgoing>_18_5_2_11940316_1506103020383_781296_36660</outgoing>
<timerEventDefinition id="_18_5_2_11940316_1506102969629_509633_36621_Ref-1"/>
</intermediateCatchEvent>
<endEvent name="Notice Sent" id="_18_5_2_11940316_1506103020354_485877_36656">
<incoming>_18_5_2_11940316_1506103020383_781296_36660</incoming>
</endEvent>
<boundaryEvent attachedToRef="_18_5_2_11940316_1505414637266_476930_36343" name="Undeliverable" id="_18_5_2_11940316_1506108299792_152688_36680">
<outgoing>_18_5_2_11940316_1506108332428_106064_36713</outgoing>
</boundaryEvent>
<sequenceFlow sourceRef="_18_5_2_11940316_1505418581530_23717_36568" targetRef="_18_5_1_11940316_1502829240162_907768_41659" name="" id="_18_5_2_11940316_1505418594912_448130_36584"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1502829240162_907768_41659" targetRef="_18_5_2_11940316_1506102969629_509633_36621" name="" id="_18_5_2_11940316_1506102970913_543454_36633"/>
<sequenceFlow sourceRef="_18_5_2_11940316_1506102969629_509633_36621" targetRef="_18_5_2_11940316_1506103020354_485877_36656" name="" id="_18_5_2_11940316_1506103020383_781296_36660"/>
<sequenceFlow sourceRef="_18_5_2_11940316_1506108299792_152688_36680" targetRef="_18_5_1_11940316_1502829812539_91609_41751" name="" id="_18_5_2_11940316_1506108332428_106064_36713"/>
</subProcess>
<endEvent name="Voter Registered" id="_18_5_1_11940316_1498143959537_550265_21323">
<incoming>_18_5_2_11940316_1505413771403_30407_36317</incoming>
<incoming>_18_5_2_11940316_1505414945320_184675_36505</incoming>
</endEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Applicant Age?" id="_18_5_2_11940316_1505663498276_543596_51596">
<incoming>_18_5_2_11940316_1505663531637_230212_51614</incoming>
<outgoing>_18_5_2_11940316_1505413631482_514713_36300</outgoing>
<outgoing>_18_5_2_11940316_1505413771403_30407_36317</outgoing>
</exclusiveGateway>
<endEvent name="Deny Registration" id="_18_5_1_11940316_1502833880535_560922_41834">
<incoming>_18_5_1_11940316_1502833880569_512341_41838</incoming>
<compensateEventDefinition waitForCompletion="true" id="_18_5_1_11940316_1502833880535_560922_41834_Ref-1"/>
</endEvent>
<callActivity calledElement="_18_5_1_11940316_1502833479646_437118_41795" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Process Undeliverable Mail" id="_18_5_1_11940316_1502829812539_91609_41751">
<documentation textFormat="text/plain">Call process undeliverable mail process.</documentation>
<incoming>_18_5_2_11940316_1506108332428_106064_36713</incoming>
<outgoing>_18_5_2_11940316_1506108859758_902077_36734</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899_Ref-8"/>
</callActivity>
<exclusiveGateway gatewayDirection="Unspecified" name="Result?" id="_18_5_2_11940316_1506108858628_37050_36724">
<incoming>_18_5_2_11940316_1506108859758_902077_36734</incoming>
<outgoing>_18_5_1_11940316_1502833880569_512341_41838</outgoing>
<outgoing>_18_5_2_11940316_1506108935635_23079_36750</outgoing>
</exclusiveGateway>
<endEvent name="No Action" id="_18_5_2_11940316_1506108935607_291195_36746">
<incoming>_18_5_2_11940316_1506108935635_23079_36750</incoming>
</endEvent>
<dataStoreReference dataStoreRef="_18_5_1_11940316_1498143971000_592173_21342" name="Voter Registration Database" id="_18_5_1_11940316_1498143971006_81819_21348"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498141060496_347838_20632" targetRef="_18_5_1_11940316_1498140984132_146266_20578" name="" id="_18_5_1_11940316_1498141066508_277596_20650"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498140984132_146266_20578" targetRef="_18_5_1_11940316_1498141289985_196329_20829" name="" id="_18_5_1_11940316_1498141290005_710633_20839"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498141289985_196329_20829" targetRef="_18_5_1_11940316_1498141330046_659664_20851" name="" id="_18_5_1_11940316_1498141330077_888561_20860">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498141289985_196329_20829" targetRef="_18_5_1_11940316_1498143294447_290387_20898" name="" id="_18_5_1_11940316_1498143294479_310508_20908">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143294447_290387_20898" targetRef="_18_5_1_11940316_1498143349395_364410_20923" name="" id="_18_5_1_11940316_1498143349418_508410_20932"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143349395_364410_20923" targetRef="_18_5_1_11940316_1498141330046_659664_20851" name="" id="_18_5_1_11940316_1498143381041_813291_20946">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498141330046_659664_20851" targetRef="_18_5_1_11940316_1498143420234_59697_20959" name="" id="_18_5_1_11940316_1498143420258_984255_20968"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143420234_59697_20959" targetRef="_18_5_1_11940316_1498140984132_146266_20578" name="" id="_18_5_1_11940316_1498143589637_624203_21021">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143420234_59697_20959" targetRef="_18_5_1_11940316_1498143466471_551844_20989" name="" id="_18_5_1_11940316_1498143600569_482466_21032">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143466471_551844_20989" targetRef="_18_5_1_11940316_1498143691821_318760_21071" name="" id="_18_5_1_11940316_1498143691838_687146_21076"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143349395_364410_20923" targetRef="_18_5_1_11940316_1498150769693_118362_21401" name="" id="_18_5_1_11940316_1498150769722_660994_21410">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498150769693_118362_21401" targetRef="_18_5_1_11940316_1498143466471_551844_20989" name="" id="_18_5_1_11940316_1498150797572_75979_21429">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1498150769693_118362_21401" targetRef="_18_5_1_11940316_1498143631469_397942_21043" name="" id="_18_5_1_11940316_1498150822828_392006_21441">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499107780468_82324_23457" targetRef="_18_5_1_11940316_1498143691821_318760_21071" name="" id="_18_5_1_11940316_1499107810193_756369_23481"/>
<sequenceFlow sourceRef="_18_5_2_11940316_1505663498276_543596_51596" targetRef="_18_5_2_11940316_1505413630092_528067_36288" isImmediate="true" name="" id="_18_5_2_11940316_1505413631482_514713_36300">
<conditionExpression xsi:type="tFormalExpression">Under 18</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_2_11940316_1505663498276_543596_51596" targetRef="_18_5_1_11940316_1498143959537_550265_21323" name="" id="_18_5_2_11940316_1505413771403_30407_36317">
<conditionExpression xsi:type="tFormalExpression">18 or Older</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_2_11940316_1505413630092_528067_36288" targetRef="_18_5_1_11940316_1498143959537_550265_21323" name="" id="_18_5_2_11940316_1505414945320_184675_36505"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1498143631469_397942_21043" targetRef="_18_5_2_11940316_1505663498276_543596_51596" name="" id="_18_5_2_11940316_1505663531637_230212_51614"/>
<sequenceFlow sourceRef="_18_5_2_11940316_1506108858628_37050_36724" targetRef="_18_5_1_11940316_1502833880535_560922_41834" name="" id="_18_5_1_11940316_1502833880569_512341_41838">
<conditionExpression xsi:type="tFormalExpression">Deny Registration</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1502829812539_91609_41751" targetRef="_18_5_2_11940316_1506108858628_37050_36724" name="" id="_18_5_2_11940316_1506108859758_902077_36734"/>
<sequenceFlow sourceRef="_18_5_2_11940316_1506108858628_37050_36724" targetRef="_18_5_2_11940316_1506108935607_291195_36746" name="" id="_18_5_2_11940316_1506108935635_23079_36750">
<conditionExpression xsi:type="tFormalExpression">No Action</conditionExpression>
</sequenceFlow>
<textAnnotation textFormat="text/plain" id="_18_5_1_11940316_1501593702641_330390_40406">
<text><html>
<head>
<style>
p {padding:0px; margin:0px;}
</style>
</head>
<body>
<p>
Remove?&#160;
</p>
</body>
</html></text>
</textAnnotation>
<textAnnotation textFormat="text/plain" id="_18_5_2_11940316_1506602211309_761993_28865">
<text><html>
<head>
<style type="text/css">
<!--
p { padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px }
-->
</style>
</head>
<body>
<p>
May represent a state or local VRDB&#160;
</p>
</body>
</html>
</text>
</textAnnotation>
<association sourceRef="_18_5_2_11940316_1506602211309_761993_28865" targetRef="_18_5_1_11940316_1498143971000_592173_21342" associationDirection="None" id="_18_5_3_36470677_1533843778263_554282_0"/>
<textAnnotation textFormat="text/plain" id="_18_5_2_11940316_1506103661071_206727_36667">
<text>Waiting period for mail to come back as undeliverable.</text>
</textAnnotation>
<association sourceRef="_18_5_2_11940316_1506103661071_206727_36667" targetRef="_18_5_2_11940316_1506102969629_509633_36621" associationDirection="None" id="_18_5_3_36470677_1533843778263_770372_0"/>
<resourceRole name="" id="_18_5_1_11940316_1499272305848_320305_23899"/>
<resourceRole name="" id="_18_5_2_11940316_1505762460964_211779_33215"/>
</process>
<process isClosed="false" isExecutable="false" name="Precinct Voter" id="_18_5_1_11940316_1498741087082_826902_21075">
<documentation textFormat="text/plain">Associate the voter with the precinct, such as for district or polling location assignment.</documentation>
<laneSet id="_18_5_1_11940316_1500473081546_937014_29182_Ref-1_laneSet">
<lane name="Voter" partitionElementRef="_18_5_1_11940316_1498828669742_83683_23366" id="_18_5_1_11940316_1500473081546_937014_29182"/>
</laneSet>
<laneSet id="_18_5_1_11940316_1499865386910_347840_25052_Ref-1_laneSet">
<lane name="Election Authority" partitionElementRef="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1499865386910_347840_25052">
<flowNodeRef>_18_5_1_11940316_1499865467527_819723_25071</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499865472350_56350_25088</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499865777660_338850_25141</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499865814960_663258_25201</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866329307_362446_25272</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866371682_672004_25387</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866412719_905494_25419</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866464844_647004_25439</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866476417_18741_25470</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866602146_274028_25526</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866659906_861749_25590</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499866690282_978944_25622</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1500475124350_219272_29284</flowNodeRef>
<flowNodeRef>_18_5_3_43701b0_1516651110160_952737_31364</flowNodeRef>
<flowNodeRef>_18_5_3_43701b0_1516653254554_983392_31459</flowNodeRef>
<flowNodeRef>_18_5_3_43701b0_1516653306903_400301_31478</flowNodeRef>
</lane>
</laneSet>
<startEvent isInterrupting="true" name="Voter Registration" id="_18_5_1_11940316_1499865467527_819723_25071">
<outgoing>_18_5_1_11940316_1499865472498_780370_25097</outgoing>
<messageEventDefinition id="_18_5_1_11940316_1499865467527_819723_25071_Ref-1"/>
</startEvent>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Match voter address to address database" id="_18_5_1_11940316_1499865472350_56350_25088">
<documentation textFormat="text/plain">Attempt to find a matching address in the voter registration database.</documentation>
<incoming>_18_5_1_11940316_1499865472498_780370_25097</incoming>
<incoming>_18_5_3_43701b0_1516653309672_130805_31499</incoming>
<outgoing>_18_5_1_11940316_1499865777736_995511_25150</outgoing>
<property name="Match voter address to address database_pin_out" id="_18_5_1_11940316_1499865472350_56350_25088_pin_out"/>
<dataInputAssociation id="_18_5_1_11940316_1500472880252_711786_29163">
<sourceRef>_18_5_1_11940316_1500472861307_215878_29138</sourceRef>
<targetRef>_18_5_1_11940316_1499865472350_56350_25088_pin_out</targetRef>
</dataInputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-1"/>
<resourceRole name="" id="_18_5_2_11940316_1505762547186_921248_33249_Ref-1"/>
</task>
<exclusiveGateway gatewayDirection="Unspecified" name="Address recognized in VRDB?" id="_18_5_1_11940316_1499865777660_338850_25141">
<incoming>_18_5_1_11940316_1499865777736_995511_25150</incoming>
<outgoing>_18_5_1_11940316_1499865815035_481023_25210</outgoing>
<outgoing>_18_5_1_11940316_1499866465010_81064_25448</outgoing>
</exclusiveGateway>
<exclusiveGateway gatewayDirection="Unspecified" name="Address valid for registration?" id="_18_5_1_11940316_1499865814960_663258_25201">
<incoming>_18_5_1_11940316_1499865815035_481023_25210</incoming>
<incoming>_18_5_3_43701b0_1516651189716_334149_31442</incoming>
<outgoing>_18_5_1_11940316_1499866329438_564869_25281</outgoing>
<outgoing>_18_5_1_11940316_1499866602286_218410_25535</outgoing>
</exclusiveGateway>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Get precinct-split from precinct-split address index" id="_18_5_1_11940316_1499866329307_362446_25272">
<documentation textFormat="text/plain">Get the precinct-split from the precinct-split to address index.</documentation>
<incoming>_18_5_1_11940316_1499866329438_564869_25281</incoming>
<outgoing>_18_5_1_11940316_1499866371831_257173_25396</outgoing>
<property name="Get precinct-split from precinct-split address index_pin_out" id="_18_5_1_11940316_1499866329307_362446_25272_pin_out"/>
<dataInputAssociation id="_18_5_2_11940316_1506296029835_864033_33818">
<sourceRef>_18_5_1_11940316_1500472861307_215878_29138</sourceRef>
<targetRef>_18_5_1_11940316_1499866329307_362446_25272_pin_out</targetRef>
</dataInputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-2"/>
<resourceRole name="" id="_18_5_2_11940316_1505762547186_921248_33249_Ref-2"/>
<resourceRole name="" id="_18_5_2_11940316_1505762560991_119917_33265_Ref-1"/>
</task>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Link voter to precinct-split" id="_18_5_1_11940316_1499866371682_672004_25387">
<documentation textFormat="text/plain">Link the associated precinct-split to the voter's record.</documentation>
<incoming>_18_5_1_11940316_1499866371831_257173_25396</incoming>
<outgoing>_18_5_1_11940316_1499866412792_954166_25424</outgoing>
<property name="Link voter to precinct-split_pin_in" id="_18_5_1_11940316_1499866371682_672004_25387_pin_in"/>
<dataOutputAssociation id="_18_5_2_11940316_1506296039999_508572_33827">
<sourceRef>_18_5_1_11940316_1499866371682_672004_25387_pin_in</sourceRef>
<targetRef>_18_5_2_11940316_1506630575461_91305_29418</targetRef>
</dataOutputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-3"/>
<resourceRole name="" id="_18_5_2_11940316_1505762560991_119917_33265_Ref-2"/>
</task>
<endEvent name="Voter Precincted" id="_18_5_1_11940316_1499866412719_905494_25419">
<incoming>_18_5_1_11940316_1499866412792_954166_25424</incoming>
</endEvent>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Research address" id="_18_5_1_11940316_1499866464844_647004_25439">
<documentation textFormat="text/plain">Research the address provided. This may involve cross referencing multiple trusted sources of information, such as government databases.</documentation>
<incoming>_18_5_1_11940316_1499866465010_81064_25448</incoming>
<outgoing>_18_5_1_11940316_1499866476504_27163_25478</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-4"/>
</task>
<exclusiveGateway gatewayDirection="Unspecified" name="Can new address be created?" id="_18_5_1_11940316_1499866476417_18741_25470">
<incoming>_18_5_1_11940316_1499866476504_27163_25478</incoming>
<outgoing>_18_5_1_11940316_1499866780663_292066_25661</outgoing>
<outgoing>_18_5_3_43701b0_1516651185505_212786_31433</outgoing>
</exclusiveGateway>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Flag voter record as not precincted" id="_18_5_1_11940316_1499866602146_274028_25526">
<documentation textFormat="text/plain">Flag the voter so that resolution can continue.</documentation>
<incoming>_18_5_1_11940316_1499866602286_218410_25535</incoming>
<incoming>_18_5_1_11940316_1499866780663_292066_25661</incoming>
<outgoing>_18_5_1_11940316_1499866660003_240836_25598</outgoing>
<property name="Flag voter record as not precincted_pin_in" id="_18_5_1_11940316_1499866602146_274028_25526_pin_in"/>
<dataOutputAssociation id="_18_5_1_11940316_1500472952359_872892_29174">
<sourceRef>_18_5_1_11940316_1499866602146_274028_25526_pin_in</sourceRef>
<targetRef>_18_5_2_11940316_1506630575461_91305_29418</targetRef>
</dataOutputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-5"/>
<resourceRole name="" id="_18_5_2_11940316_1505762560991_119917_33265_Ref-3"/>
</task>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Contact voter for address clarification or correction" id="_18_5_1_11940316_1499866659906_861749_25590">
<documentation textFormat="text/plain">Contact the voter for more information. For example, the address issue could be the result of a transcription error.</documentation>
<incoming>_18_5_1_11940316_1499866660003_240836_25598</incoming>
<outgoing>_18_5_1_11940316_1500475124399_307659_29292</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-6"/>
</task>
<endEvent name="Voter not Precincted" id="_18_5_1_11940316_1499866690282_978944_25622">
<incoming>_18_5_1_11940316_1500475203061_605244_29316</incoming>
<incoming>_18_5_1_11940316_1500475254170_823907_29353</incoming>
</endEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Correctable?" id="_18_5_1_11940316_1500475124350_219272_29284">
<incoming>_18_5_1_11940316_1500475124399_307659_29292</incoming>
<outgoing>_18_5_1_11940316_1500475163354_565638_29304</outgoing>
<outgoing>_18_5_1_11940316_1500475203061_605244_29316</outgoing>
</exclusiveGateway>
<boundaryEvent cancelActivity="true" attachedToRef="_18_5_1_11940316_1499866659906_861749_25590" name="Takes too Long" id="_18_5_1_11940316_1500475239437_970130_29327">
<outgoing>_18_5_1_11940316_1500475254170_823907_29353</outgoing>
<timerEventDefinition id="_18_5_1_11940316_1500475239437_970130_29327_Ref-1"/>
</boundaryEvent>
<callActivity calledElement="_18_5_1_11940316_1500469253707_802036_24840" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Create address in database" id="_18_5_3_43701b0_1516651110160_952737_31364">
<documentation textFormat="text/plain">Create a new address or range in the address database.</documentation>
<incoming>_18_5_3_43701b0_1516651185505_212786_31433</incoming>
<outgoing>_18_5_3_43701b0_1516651189716_334149_31442</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102_Ref-7"/>
</callActivity>
<intermediateThrowEvent name="Match voter to address database" id="_18_5_3_43701b0_1516653254554_983392_31459">
<incoming>_18_5_1_11940316_1500475163354_565638_29304</incoming>
<linkEventDefinition name="Match voter to address database" id="_18_5_3_43701b0_1516653254554_983392_31459_Ref-1"/>
</intermediateThrowEvent>
<intermediateCatchEvent name="Match voter to address database" id="_18_5_3_43701b0_1516653306903_400301_31478">
<outgoing>_18_5_3_43701b0_1516653309672_130805_31499</outgoing>
<linkEventDefinition name="Match voter to address database" id="_18_5_3_43701b0_1516653306903_400301_31478_Ref-1"/>
</intermediateCatchEvent>
<dataStoreReference dataStoreRef="_18_5_1_11940316_1500472861307_215878_29138" name="Address Records" id="_18_5_1_11940316_1500472861343_588983_29142"/>
<dataStoreReference dataStoreRef="_18_5_2_11940316_1506630575461_91305_29418" name="Voter Record" id="_18_5_2_11940316_1506630575480_593711_29420"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499865467527_819723_25071" targetRef="_18_5_1_11940316_1499865472350_56350_25088" name="" id="_18_5_1_11940316_1499865472498_780370_25097"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499865472350_56350_25088" targetRef="_18_5_1_11940316_1499865777660_338850_25141" name="" id="_18_5_1_11940316_1499865777736_995511_25150"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499865777660_338850_25141" targetRef="_18_5_1_11940316_1499865814960_663258_25201" name="" id="_18_5_1_11940316_1499865815035_481023_25210">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499865814960_663258_25201" targetRef="_18_5_1_11940316_1499866329307_362446_25272" name="" id="_18_5_1_11940316_1499866329438_564869_25281">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866329307_362446_25272" targetRef="_18_5_1_11940316_1499866371682_672004_25387" name="" id="_18_5_1_11940316_1499866371831_257173_25396"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866371682_672004_25387" targetRef="_18_5_1_11940316_1499866412719_905494_25419" name="" id="_18_5_1_11940316_1499866412792_954166_25424"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499865777660_338850_25141" targetRef="_18_5_1_11940316_1499866464844_647004_25439" name="" id="_18_5_1_11940316_1499866465010_81064_25448">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866464844_647004_25439" targetRef="_18_5_1_11940316_1499866476417_18741_25470" name="" id="_18_5_1_11940316_1499866476504_27163_25478"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499865814960_663258_25201" targetRef="_18_5_1_11940316_1499866602146_274028_25526" name="" id="_18_5_1_11940316_1499866602286_218410_25535">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866602146_274028_25526" targetRef="_18_5_1_11940316_1499866659906_861749_25590" name="" id="_18_5_1_11940316_1499866660003_240836_25598"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866476417_18741_25470" targetRef="_18_5_1_11940316_1499866602146_274028_25526" name="" id="_18_5_1_11940316_1499866780663_292066_25661">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866659906_861749_25590" targetRef="_18_5_1_11940316_1500475124350_219272_29284" name="" id="_18_5_1_11940316_1500475124399_307659_29292"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1500475124350_219272_29284" targetRef="_18_5_3_43701b0_1516653254554_983392_31459" name="" id="_18_5_1_11940316_1500475163354_565638_29304">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500475124350_219272_29284" targetRef="_18_5_1_11940316_1499866690282_978944_25622" name="" id="_18_5_1_11940316_1500475203061_605244_29316">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500475239437_970130_29327" targetRef="_18_5_1_11940316_1499866690282_978944_25622" name="" id="_18_5_1_11940316_1500475254170_823907_29353"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499866476417_18741_25470" targetRef="_18_5_3_43701b0_1516651110160_952737_31364" name="" id="_18_5_3_43701b0_1516651185505_212786_31433"/>
<sequenceFlow sourceRef="_18_5_3_43701b0_1516651110160_952737_31364" targetRef="_18_5_1_11940316_1499865814960_663258_25201" name="" id="_18_5_3_43701b0_1516651189716_334149_31442"/>
<sequenceFlow sourceRef="_18_5_3_43701b0_1516653306903_400301_31478" targetRef="_18_5_1_11940316_1499865472350_56350_25088" name="" id="_18_5_3_43701b0_1516653309672_130805_31499"/>
<textAnnotation textFormat="text/plain" id="_18_5_2_11940316_1507146980074_597846_38201">
<text><html>
<head>
<style>
p {padding:0px; margin:0px;}
</style>
</head>
<body>
<p>
Non allowable address (Business, etc.).
</p>
</body>
</html></text>
</textAnnotation>
<association sourceRef="_18_5_2_11940316_1507146980074_597846_38201" targetRef="_18_5_1_11940316_1499865814960_663258_25201" associationDirection="None" id="_18_5_3_36470677_1533843778241_344852_0"/>
<resourceRole name="" id="_18_5_1_11940316_1499865472558_483598_25102"/>
<resourceRole name="" id="_18_5_2_11940316_1505762547186_921248_33249"/>
<resourceRole name="" id="_18_5_2_11940316_1505762560991_119917_33265"/>
</process>
<process isClosed="true" isExecutable="false" name="Process Death Records" id="_18_5_1_11940316_1499087138966_11396_21608">
<documentation textFormat="text/plain">For each death notice received: look up a record in the voter registration database and remove the decedent from the list of eligible voters. </documentation>
<ioSpecification id="_18_5_3_1_1533843778418_760470_0">
<dataInput name="Death Records" isCollection="true" id="_18_5_1_11940316_1499100521589_119623_21939"/>
<inputSet/>
<outputSet/>
</ioSpecification>
<laneSet id="_18_5_1_11940316_1499088406069_141303_22196_Ref-1_laneSet">
<lane name="Address Management System" partitionElementRef="_18_5_1_11940316_1498999872536_984458_21962" id="_18_5_1_11940316_1499088406069_141303_22196"/>
</laneSet>
<laneSet id="_18_5_1_11940316_1500064596674_302035_23782_Ref-1_laneSet">
<lane name="Resident" partitionElementRef="_18_5_1_11940316_1500064569910_373836_23754" id="_18_5_1_11940316_1500064596674_302035_23782"/>
</laneSet>
<laneSet id="_18_5_1_11940316_1499088446090_259832_22240_Ref-1_laneSet">
<lane name="" partitionElementRef="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1499088446090_259832_22240">
<childLaneSet id="_18_5_1_11940316_1499088446121_173812_22245_Ref-1_laneSet">
<lane name="" partitionElementRef="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1499088446121_173812_22245">
<flowNodeRef>_18_5_1_11940316_1499087351135_422248_21708</flowNodeRef>
</lane>
<lane name="" partitionElementRef="_18_5_1_11940316_1498828643817_94789_23277" id="_18_5_1_11940316_1499088446121_307765_22246"/>
</childLaneSet>
</lane>
</laneSet>
<laneSet id="_18_5_1_11940316_1499087381599_452375_21752_Ref-1_laneSet">
<lane name="Election Authority" partitionElementRef="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1499087381599_452375_21752">
<flowNodeRef>_18_5_1_11940316_1499087351135_422248_21708</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499099623474_914985_21414</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499099976894_937742_21598</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1502468749234_421246_31549</flowNodeRef>
</lane>
</laneSet>
<laneSet id="_18_5_1_11940316_1499087400220_937426_21785_Ref-1_laneSet">
<lane name="Voter Registration Database" partitionElementRef="_18_5_1_11940316_1498828643817_94789_23277" id="_18_5_1_11940316_1499087400220_937426_21785"/>
</laneSet>
<laneSet id="_18_5_1_11940316_1499088411617_245606_22216_Ref-1_laneSet">
<lane name="Voter Registration Database" partitionElementRef="_18_5_1_11940316_1498828643817_94789_23277" id="_18_5_1_11940316_1499088411617_245606_22216"/>
</laneSet>
<startEvent isInterrupting="true" name="Receive Death Records" id="_18_5_1_11940316_1499087351135_422248_21708">
<documentation textFormat="text/plain">Attempt to find an eligible voter record matching the decedent’s information.</documentation>
<outgoing>_18_5_1_11940316_1499099715328_819139_21474</outgoing>
<messageEventDefinition id="_18_5_1_11940316_1499087351135_422248_21708_Ref-1"/>
</startEvent>
<subProcess triggeredByEvent="false" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Process Death Record" id="_18_5_1_11940316_1499099623474_914985_21414">
<documentation textFormat="text/plain">Look up a record in the voter registration database and remove the decedent from the list of eligible voters.</documentation>
<incoming>_18_5_1_11940316_1499099715328_819139_21474</incoming>
<incoming>_18_5_1_11940316_1502468756259_481364_31563</incoming>
<outgoing>_18_5_1_11940316_1499099976907_826473_21604</outgoing>
<property name="" id="_18_5_1_11940316_1499100242341_536046_21651"/>
<property name="Process Death Record_pin_out" id="_18_5_1_11940316_1499099623474_914985_21414_pin_out"/>
<dataInputAssociation id="_18_5_1_11940316_1499100544357_67567_21967">
<sourceRef>_18_5_1_11940316_1499100521589_119623_21939</sourceRef>
<targetRef>_18_5_1_11940316_1499099623474_914985_21414_pin_out</targetRef>
</dataInputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499087390457_133872_21773_Ref-1"/>
<multiInstanceLoopCharacteristics isSequential="false" behavior="All" id="_18_5_1_11940316_1499099623474_914985_21414_Ref-1"/>
<startEvent name="" id="_18_5_1_11940316_1499452634093_403519_23460">
<outgoing>_18_5_1_11940316_1499452861741_35686_23554</outgoing>
</startEvent>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Lookup voter record" id="_18_5_1_11940316_1499452861711_487043_23545">
<documentation textFormat="text/plain">The death notice may not pertain to an eligible record in the voter registration database. The election jurisdiction must find a matching record in order to proceed.</documentation>
<incoming>_18_5_1_11940316_1499452861741_35686_23554</incoming>
<outgoing>_18_5_1_11940316_1499861303779_443531_24271</outgoing>
<property name="Lookup voter record_pin_out" id="_18_5_1_11940316_1499452861711_487043_23545_pin_out"/>
<dataInputAssociation id="_18_5_1_11940316_1499454333615_525680_23812">
<sourceRef>_18_5_1_11940316_1499089049215_588855_22680</sourceRef>
<targetRef>_18_5_1_11940316_1499452861711_487043_23545_pin_out</targetRef>
</dataInputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499087390457_133872_21773_Ref-2"/>
<resourceRole name="" id="_18_5_1_11940316_1499088503446_679836_22300_Ref-1"/>
</task>
<exclusiveGateway gatewayDirection="Unspecified" name="Suitable Voter Registration Found?" id="_18_5_1_11940316_1499861303750_368208_24263">
<incoming>_18_5_1_11940316_1499861303779_443531_24271</incoming>
<outgoing>_18_5_1_11940316_1499861337304_310653_24292</outgoing>
<outgoing>_18_5_1_11940316_1499861356090_703537_24314</outgoing>
</exclusiveGateway>
<endEvent name="No Action" id="_18_5_1_11940316_1499861337285_15665_24286">
<incoming>_18_5_1_11940316_1499861337304_310653_24292</incoming>
</endEvent>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Remove person from list of eligible voters" id="_18_5_1_11940316_1499861356038_840735_24306">
<documentation textFormat="text/plain">Remove the decedent from the list of eligible voters. </documentation>
<incoming>_18_5_1_11940316_1500064698040_272153_23837</incoming>
<incoming>_18_5_1_11940316_1500065137582_787992_23953</incoming>
<incoming>_18_5_1_11940316_1500065748445_124927_24102</incoming>
<outgoing>_18_5_1_11940316_1500065378919_404334_24021</outgoing>
<property name="Remove person from list of eligible voters_pin_in" id="_18_5_1_11940316_1499861356038_840735_24306_pin_in"/>
<dataOutputAssociation id="_18_5_1_11940316_1499861390885_33073_24363">
<sourceRef>_18_5_1_11940316_1499861356038_840735_24306_pin_in</sourceRef>
<targetRef>_18_5_1_11940316_1499089049215_588855_22680</targetRef>
</dataOutputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499087390457_133872_21773_Ref-3"/>
<resourceRole name="" id="_18_5_1_11940316_1499088503446_679836_22300_Ref-2"/>
</task>
<endEvent name="Removed Deceased" id="_18_5_1_11940316_1499861373034_92646_24333">
<incoming>_18_5_1_11940316_1499861373058_992675_24338</incoming>
</endEvent>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Send confirmation of death" id="_18_5_1_11940316_1500064717108_476573_23855">
<documentation textFormat="text/plain">An election jurisdiction may require a confirmation of death be sent to the decedent’s residence on file with the voter registration database. This starts a cure period in which the removal may be challenged.</documentation>
<incoming>_18_5_1_11940316_1500064766383_944408_23882</incoming>
<outgoing>_18_5_1_11940316_1500065073494_996182_23940</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499087390457_133872_21773_Ref-4"/>
</task>
<boundaryEvent cancelActivity="true" attachedToRef="_18_5_1_11940316_1500064717108_476573_23855" name="Took too long" id="_18_5_1_11940316_1500064813591_501605_23902">
<outgoing>_18_5_1_11940316_1500065748445_124927_24102</outgoing>
<timerEventDefinition id="_18_5_1_11940316_1500064813591_501605_23902_Ref-1"/>
</boundaryEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Death Confirmed?" id="_18_5_1_11940316_1500065073448_558183_23931">
<incoming>_18_5_1_11940316_1500065073494_996182_23940</incoming>
<outgoing>_18_5_1_11940316_1500065137582_787992_23953</outgoing>
<outgoing>_18_5_1_11940316_1500065143358_750341_23967</outgoing>
</exclusiveGateway>
<endEvent name="No Action" id="_18_5_1_11940316_1500065143320_11763_23962">
<incoming>_18_5_1_11940316_1500065143358_750341_23967</incoming>
</endEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Jurisdiction Requires Notice of Removal" id="_18_5_1_11940316_1500065377639_718364_24011">
<incoming>_18_5_1_11940316_1500065378919_404334_24021</incoming>
<outgoing>_18_5_1_11940316_1499861373058_992675_24338</outgoing>
<outgoing>_18_5_1_11940316_1500065444363_30036_24040</outgoing>
</exclusiveGateway>
<endEvent name="Removed Deceased" id="_18_5_1_11940316_1500065444316_153135_24035">
<incoming>_18_5_1_11940316_1500065444363_30036_24040</incoming>
<messageEventDefinition id="_18_5_1_11940316_1500065444316_153135_24035_Ref-1"/>
</endEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Jurisdiction requires confirmation?" id="_18_5_1_11940316_1500065864845_431551_24113">
<incoming>_18_5_1_11940316_1499861356090_703537_24314</incoming>
<outgoing>_18_5_1_11940316_1500064698040_272153_23837</outgoing>
<outgoing>_18_5_1_11940316_1500064766383_944408_23882</outgoing>
</exclusiveGateway>
<sequenceFlow sourceRef="_18_5_1_11940316_1499452634093_403519_23460" targetRef="_18_5_1_11940316_1499452861711_487043_23545" name="" id="_18_5_1_11940316_1499452861741_35686_23554"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499452861711_487043_23545" targetRef="_18_5_1_11940316_1499861303750_368208_24263" name="" id="_18_5_1_11940316_1499861303779_443531_24271"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499861303750_368208_24263" targetRef="_18_5_1_11940316_1499861337285_15665_24286" name="" id="_18_5_1_11940316_1499861337304_310653_24292">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499861303750_368208_24263" targetRef="_18_5_1_11940316_1500065864845_431551_24113" name="" id="_18_5_1_11940316_1499861356090_703537_24314">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500065377639_718364_24011" targetRef="_18_5_1_11940316_1499861373034_92646_24333" name="" id="_18_5_1_11940316_1499861373058_992675_24338">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500065864845_431551_24113" targetRef="_18_5_1_11940316_1499861356038_840735_24306" name="" id="_18_5_1_11940316_1500064698040_272153_23837">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500065864845_431551_24113" targetRef="_18_5_1_11940316_1500064717108_476573_23855" name="" id="_18_5_1_11940316_1500064766383_944408_23882">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500064717108_476573_23855" targetRef="_18_5_1_11940316_1500065073448_558183_23931" name="" id="_18_5_1_11940316_1500065073494_996182_23940"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1500065073448_558183_23931" targetRef="_18_5_1_11940316_1499861356038_840735_24306" name="" id="_18_5_1_11940316_1500065137582_787992_23953">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500065073448_558183_23931" targetRef="_18_5_1_11940316_1500065143320_11763_23962" name="" id="_18_5_1_11940316_1500065143358_750341_23967">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499861356038_840735_24306" targetRef="_18_5_1_11940316_1500065377639_718364_24011" name="" id="_18_5_1_11940316_1500065378919_404334_24021"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1500065377639_718364_24011" targetRef="_18_5_1_11940316_1500065444316_153135_24035" name="" id="_18_5_1_11940316_1500065444363_30036_24040">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1500064813591_501605_23902" targetRef="_18_5_1_11940316_1499861356038_840735_24306" name="" id="_18_5_1_11940316_1500065748445_124927_24102"/>
<textAnnotation textFormat="text/plain" id="_18_5_1_11940316_1500487543659_601420_30848">
<text><html>
<head>
<style>
p {padding:0px; margin:0px;}
</style>
</head>
<body>
<p>
E.g. Virginia&#160;
</p>
</body>
</html></text>
</textAnnotation>
<association sourceRef="_18_5_1_11940316_1500487543659_601420_30848" targetRef="_18_5_1_11940316_1500065377639_718364_24011" associationDirection="None" id="_18_5_3_36470677_1533843778272_632470_0"/>
<textAnnotation textFormat="text/plain" id="_18_5_1_11940316_1500487588096_739399_30857">
<text><html>
<head>
<style>
p {padding:0px; margin:0px;}
</style>
</head>
<body>
<p>
E.g. Maryland&#160;
</p>
</body>
</html></text>
</textAnnotation>
<association sourceRef="_18_5_1_11940316_1500487588096_739399_30857" targetRef="_18_5_1_11940316_1500064717108_476573_23855" associationDirection="None" id="_18_5_3_36470677_1533843778272_883756_0"/>
</subProcess>
<endEvent name="Death Records Processed" id="_18_5_1_11940316_1499099976894_937742_21598">
<incoming>_18_5_1_11940316_1499099976907_826473_21604</incoming>
</endEvent>
<startEvent name="Manual Start" id="_18_5_1_11940316_1502468749234_421246_31549">
<outgoing>_18_5_1_11940316_1502468756259_481364_31563</outgoing>
</startEvent>
<dataStoreReference dataStoreRef="_18_5_1_11940316_1499100521589_119623_21939" name="Death Records" id="_18_5_1_11940316_1499100521596_250589_21944"/>
<dataStoreReference dataStoreRef="_18_5_1_11940316_1499089049215_588855_22680" name="Voter Record" id="_18_5_1_11940316_1499089052236_923103_22696"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499087351135_422248_21708" targetRef="_18_5_1_11940316_1499099623474_914985_21414" name="" id="_18_5_1_11940316_1499099715328_819139_21474"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499099623474_914985_21414" targetRef="_18_5_1_11940316_1499099976894_937742_21598" name="" id="_18_5_1_11940316_1499099976907_826473_21604"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1502468749234_421246_31549" targetRef="_18_5_1_11940316_1499099623474_914985_21414" name="" id="_18_5_1_11940316_1502468756259_481364_31563"/>
<textAnnotation textFormat="text/plain" id="_18_5_1_11940316_1500064324893_907949_23736">
<text><html>
<head>
<style>
p {padding:0px; margin:0px;}
</style>
</head>
<body>
<p>
Assume trusted source
</p>
</body>
</html></text>
</textAnnotation>
<association sourceRef="_18_5_1_11940316_1500064324893_907949_23736" targetRef="_18_5_1_11940316_1499087351135_422248_21708" associationDirection="None" id="_18_5_3_36470677_1533843778271_595239_0"/>
<association sourceRef="_18_5_1_11940316_1500064324893_907949_23736" targetRef="_18_5_1_11940316_1499100521589_119623_21939" associationDirection="None" id="_18_5_3_36470677_1533843778271_785465_0"/>
<association sourceRef="_18_5_1_11940316_1499087351135_422248_21708" targetRef="_18_5_1_11940316_1499100521589_119623_21939" associationDirection="One" id="_18_5_2_43701b0_1511987061133_515787_71062"/>
<resourceRole name="" id="_18_5_1_11940316_1499087390457_133872_21773"/>
<resourceRole name="" id="_18_5_1_11940316_1499088503446_679836_22300"/>
</process>
<process isClosed="false" isExecutable="false" name="Process Non Participation" id="_18_5_1_11940316_1499103581808_34316_22530">
<documentation textFormat="text/plain">For each eligible voter: Determine if a voter’s lack of participation in the electoral process should begin a list maintenance process. </documentation>
<ioSpecification id="_18_5_3_1_1533843778418_397178_0">
<dataInput name="Eligible Voters" isCollection="true" id="_18_5_1_11940316_1501772563087_18659_32225"/>
<inputSet/>
<outputSet/>
</ioSpecification>
<laneSet id="_18_5_1_11940316_1499454436745_223219_23855_Ref-1_laneSet">
<lane name="Election Authority" partitionElementRef="_18_5_1_11940316_1498999818037_96552_21933" id="_18_5_1_11940316_1499454436745_223219_23855">
<flowNodeRef>_18_5_1_11940316_1499863008396_289070_24448</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1499864992330_565100_24940</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1500666761699_449471_31209</flowNodeRef>
<flowNodeRef>_18_5_1_11940316_1501015134136_831949_25319</flowNodeRef>
</lane>
</laneSet>
<subProcess triggeredByEvent="false" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Process voter for non participation" id="_18_5_1_11940316_1499863008396_289070_24448">
<documentation textFormat="text/plain">Determine if a voter’s lack of participation in the electoral process should begin a list maintenance process. </documentation>
<incoming>_18_5_1_11940316_1500666771124_787831_31226</incoming>
<outgoing>_18_5_1_11940316_1499864992388_904672_24946</outgoing>
<property name="Process voter for non participation_pin_out" id="_18_5_1_11940316_1499863008396_289070_24448_pin_out"/>
<dataInputAssociation id="_18_5_1_11940316_1501772581708_672960_32253">
<sourceRef>_18_5_1_11940316_1501772563087_18659_32225</sourceRef>
<targetRef>_18_5_1_11940316_1499863008396_289070_24448_pin_out</targetRef>
</dataInputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499863008561_909610_24464_Ref-1"/>
<multiInstanceLoopCharacteristics isSequential="false" behavior="All" id="_18_5_1_11940316_1499863008396_289070_24448_Ref-1"/>
<startEvent name="" id="_18_5_1_11940316_1499863055763_111_24522">
<outgoing>_18_5_1_11940316_1501015047981_152117_25242</outgoing>
</startEvent>
<exclusiveGateway gatewayDirection="Unspecified" name="Voter has eligible activity during activity period?" id="_18_5_1_11940316_1499863181324_160274_24625">
<incoming>_18_5_1_11940316_1499863102073_227758_24550</incoming>
<outgoing>_18_5_1_11940316_1499863237987_248990_24655</outgoing>
<outgoing>_18_5_1_11940316_1499864219556_105789_24912</outgoing>
</exclusiveGateway>
<endEvent name="No Action" id="_18_5_1_11940316_1499863237944_916887_24650">
<incoming>_18_5_1_11940316_1499863237987_248990_24655</incoming>
</endEvent>
<callActivity calledElement="_18_5_1_11940316_1499863665088_643400_24771" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Confirm voter's eligibility" id="_18_5_1_11940316_1499864200408_662712_24893">
<documentation textFormat="text/plain">Lack of voter activity may indicate that the voter has moved. The confirmation process is started to verify the voter's eligibility.</documentation>
<incoming>_18_5_1_11940316_1499864219556_105789_24912</incoming>
<outgoing>_18_5_1_11940316_1501016885312_919107_25724</outgoing>
</callActivity>
<endEvent name="No Action" id="_18_5_1_11940316_1499863405205_265585_24702">
<incoming>_18_5_1_11940316_1499863405254_298714_24707</incoming>
<incoming>_18_5_2_11940316_1506098283383_188017_36008</incoming>
</endEvent>
<adHocSubProcess cancelRemainingInstances="true" ordering="Parallel" triggeredByEvent="false" isForCompensation="false" startQuantity="1" completionQuantity="1" name="Evaluate voter activity" id="_18_5_1_11940316_1501015046987_459163_25217">
<documentation textFormat="text/plain">Determine if the voter has any qualifying activity during the activity period.</documentation>
<incoming>_18_5_1_11940316_1501015047981_152117_25242</incoming>
<outgoing>_18_5_1_11940316_1499863102073_227758_24550</outgoing>
<resourceRole name="" id="_18_5_1_11940316_1499863008561_909610_24464_Ref-2"/>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Evaluate voter initiated activity" id="_18_5_1_11940316_1501015134136_831949_25319">
<documentation textFormat="text/plain">Determine if the voter has any qualifying activity during the activity period. This is jurisdiction defined, but can include signing a petition or filling out a voter registration.</documentation>
<resourceRole name="" id="_18_5_1_11940316_1499863008561_909610_24464_Ref-3"/>
<resourceRole name="" id="_18_5_2_11940316_1505763202881_129314_33490_Ref-1"/>
</task>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Evaluate voting history" id="_18_5_1_11940316_1501015087261_589533_25259">
<documentation textFormat="text/plain">Determine if the voter has voting history (i.e. voted or appeared to vote) during the activity period.</documentation>
<resourceRole name="" id="_18_5_1_11940316_1499863008561_909610_24464_Ref-4"/>
<resourceRole name="" id="_18_5_2_11940316_1505763202881_129314_33490_Ref-2"/>
</task>
<completionCondition xsi:type="tFormalExpression">Applicable tasks completed</completionCondition>
</adHocSubProcess>
<exclusiveGateway gatewayDirection="Unspecified" name="Result?" id="_18_5_1_11940316_1501016883522_483537_25713">
<incoming>_18_5_1_11940316_1501016885312_919107_25724</incoming>
<outgoing>_18_5_1_11940316_1499863405254_298714_24707</outgoing>
<outgoing>_18_5_1_11940316_1501017061659_995268_25760</outgoing>
</exclusiveGateway>
<task isForCompensation="false" startQuantity="1" completionQuantity="1" name="Remove voter from list of eligible voters" id="_18_5_1_11940316_1501017061582_181879_25750">
<documentation textFormat="text/plain">If the voter is not confirmed, they are removed from the list of eligible voters.</documentation>
<incoming>_18_5_1_11940316_1501017061659_995268_25760</incoming>
<outgoing>_18_5_1_11940316_1501017113693_791398_25788</outgoing>
<property name="Remove voter from list of eligible voters_pin_in" id="_18_5_1_11940316_1501017061582_181879_25750_pin_in"/>
<dataOutputAssociation id="_18_5_1_11940316_1501772373171_886416_32217">
<sourceRef>_18_5_1_11940316_1501017061582_181879_25750_pin_in</sourceRef>
<targetRef>_18_5_1_11940316_1501771963631_453942_32151</targetRef>
</dataOutputAssociation>
<resourceRole name="" id="_18_5_1_11940316_1499863008561_909610_24464_Ref-5"/>
<resourceRole name="" id="_18_5_2_11940316_1505763202881_129314_33490_Ref-3"/>
</task>
<endEvent name="Voter Removed" id="_18_5_1_11940316_1501017113661_967497_25783">
<incoming>_18_5_1_11940316_1501017113693_791398_25788</incoming>
</endEvent>
<boundaryEvent cancelActivity="true" attachedToRef="_18_5_1_11940316_1499864200408_662712_24893" name="Qualifying Activity Performed" id="_18_5_2_11940316_1506086965973_811837_35981">
<outgoing>_18_5_2_11940316_1506098283383_188017_36008</outgoing>
<escalationEventDefinition id="_18_5_2_11940316_1506086965973_811837_35981_Ref-1"/>
</boundaryEvent>
<sequenceFlow sourceRef="_18_5_1_11940316_1501015046987_459163_25217" targetRef="_18_5_1_11940316_1499863181324_160274_24625" name="" id="_18_5_1_11940316_1499863102073_227758_24550"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499863181324_160274_24625" targetRef="_18_5_1_11940316_1499863237944_916887_24650" name="" id="_18_5_1_11940316_1499863237987_248990_24655">
<conditionExpression xsi:type="tFormalExpression">Yes</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1501016883522_483537_25713" targetRef="_18_5_1_11940316_1499863405205_265585_24702" name="" id="_18_5_1_11940316_1499863405254_298714_24707">
<conditionExpression xsi:type="tFormalExpression">Confirmed Current Address</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499863181324_160274_24625" targetRef="_18_5_1_11940316_1499864200408_662712_24893" name="" id="_18_5_1_11940316_1499864219556_105789_24912">
<conditionExpression xsi:type="tFormalExpression">No</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1499863055763_111_24522" targetRef="_18_5_1_11940316_1501015046987_459163_25217" name="" id="_18_5_1_11940316_1501015047981_152117_25242"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499864200408_662712_24893" targetRef="_18_5_1_11940316_1501016883522_483537_25713" name="" id="_18_5_1_11940316_1501016885312_919107_25724"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1501016883522_483537_25713" targetRef="_18_5_1_11940316_1501017061582_181879_25750" name="" id="_18_5_1_11940316_1501017061659_995268_25760">
<conditionExpression xsi:type="tFormalExpression">No Response</conditionExpression>
</sequenceFlow>
<sequenceFlow sourceRef="_18_5_1_11940316_1501017061582_181879_25750" targetRef="_18_5_1_11940316_1501017113661_967497_25783" name="" id="_18_5_1_11940316_1501017113693_791398_25788"/>
<sequenceFlow sourceRef="_18_5_2_11940316_1506086965973_811837_35981" targetRef="_18_5_1_11940316_1499863405205_265585_24702" name="" id="_18_5_2_11940316_1506098283383_188017_36008"/>
<textAnnotation textFormat="text/plain" id="_18_5_2_43701b0_1511376899037_341020_47323">
<text>Are there other outcomes?</text>
</textAnnotation>
<association sourceRef="_18_5_2_43701b0_1511376899037_341020_47323" targetRef="_18_5_1_11940316_1501016883522_483537_25713" associationDirection="None" id="_18_5_3_36470677_1533843778275_488033_0"/>
</subProcess>
<endEvent name="Non Participation Processed" id="_18_5_1_11940316_1499864992330_565100_24940">
<incoming>_18_5_1_11940316_1499864992388_904672_24946</incoming>
</endEvent>
<startEvent isInterrupting="true" name="Time to Do This" id="_18_5_1_11940316_1500666761699_449471_31209">
<outgoing>_18_5_1_11940316_1500666771124_787831_31226</outgoing>
<timerEventDefinition id="_18_5_1_11940316_1500666761699_449471_31209_Ref-1"/>
</startEvent>
<dataStoreReference dataStoreRef="_18_5_1_11940316_1501771963631_453942_32151" name="Voter Record" id="_18_5_1_11940316_1501771963670_844400_32157"/>
<dataStoreReference dataStoreRef="_18_5_1_11940316_1501772563087_18659_32225" name="Eligible Voters" id="_18_5_1_11940316_1501772563106_19594_32227"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1499863008396_289070_24448" targetRef="_18_5_1_11940316_1499864992330_565100_24940" name="" id="_18_5_1_11940316_1499864992388_904672_24946"/>
<sequenceFlow sourceRef="_18_5_1_11940316_1500666761699_449471_31209" targetRef="_18_5_1_11940316_1499863008396_289070_24448" name="" id="_18_5_1_11940316_1500666771124_787831_31226"/>
<resourceRole name="" id="_18_5_1_11940316_1499863008561_909610_24464"/>
<resourceRole name="" id="_18_5_2_11940316_1505763202881_129314_33490"/>
</process>
<process isClosed="false" isExecutable="false" name="Process Court Actions" id="_18_5_1_11940316_1499264632465_651914_22899">