This repository was archived by the owner on Oct 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathengine.zenta
More file actions
6458 lines (6444 loc) · 947 KB
/
engine.zenta
File metadata and controls
6458 lines (6444 loc) · 947 KB
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"?>
<zenta:model xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zenta="http://magwas.rulez.org/zenta" name="Voting engine" id="bb81f441-cc75-4d77-8e33-3d496ebb1f9c" version="2.2.1">
<folder name="2. How" id="10173398-9767-4620-bb65-c2511d8eda73">
<folder name="2. Functions" id="8b296020-2208-4702-adc8-bb471b766128">
<folder name="Supporting functions" id="8f885d27-8da8-4058-8590-d14628c61fb8">
<folder name="1. Random source" id="f704fe69-41b7-406c-9243-43e92ccbaf35">
<element xsi:type="zenta:ZentaDiagramModel" name="create random key" id="f07405d5-5441-4266-a29b-67fb7b86d773">
<child xsi:type="zenta:DiagramObject" id="a0279389-b280-4f8c-b65d-ad566b030f10" targetConnections="a337cc10-9734-422e-a109-33cecbf242c2" zentaElement="083af6ee-5e6e-4949-a7d6-82cf3936b242">
<bounds x="370" y="133" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="2fb7f188-6bda-40b1-aa83-724710e8206f" source="a0279389-b280-4f8c-b65d-ad566b030f10" target="bb741289-55f5-4ea8-9ff6-500cf35b529f" relationship="eeee7368-5f6f-4b11-afe1-cab1df9fefac"/>
<sourceConnection xsi:type="zenta:Connection" id="4ffbd530-596f-4702-a57b-d4bbfa4eaf17" source="a0279389-b280-4f8c-b65d-ad566b030f10" target="bf877236-8131-4a70-88d8-770d8029aa46" relationship="b963fc91-3f74-468d-9ca0-6b1107d231e9"/>
<sourceConnection xsi:type="zenta:Connection" id="6ecec7c0-b9c8-468f-8290-f27d3bf54625" source="a0279389-b280-4f8c-b65d-ad566b030f10" target="b760365e-00a4-4c44-b614-ab7dac2b1e87" relationship="5fa86320-c407-4174-b838-b17ff45bd5b9"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b760365e-00a4-4c44-b614-ab7dac2b1e87" targetConnections="6ecec7c0-b9c8-468f-8290-f27d3bf54625" zentaElement="8bcb7282-cfad-423c-80da-e3f11f861c14">
<bounds x="192" y="289" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bfb82a7d-d7a1-461d-9a6e-f45ca083ad64" zentaElement="de4b570a-17b0-4872-a614-22acfca5eea2">
<bounds x="374" y="31" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="a337cc10-9734-422e-a109-33cecbf242c2" source="bfb82a7d-d7a1-461d-9a6e-f45ca083ad64" target="a0279389-b280-4f8c-b65d-ad566b030f10" relationship="b25a25e2-eab6-4daa-8d86-be3c809218c8"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bb741289-55f5-4ea8-9ff6-500cf35b529f" targetConnections="2fb7f188-6bda-40b1-aa83-724710e8206f" zentaElement="779417b2-b9bf-469e-a725-e71aaa9f739d">
<bounds x="461" y="289" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bf877236-8131-4a70-88d8-770d8029aa46" targetConnections="4ffbd530-596f-4702-a57b-d4bbfa4eaf17" zentaElement="63a6a638-1897-4761-8914-bd158aa0b53b">
<bounds x="612" y="289" width="-1" height="-1"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="Create random key" id="083af6ee-5e6e-4949-a7d6-82cf3936b242" ancestor="service"/>
<element xsi:type="zenta:BasicObject" name="random key is random" id="779417b2-b9bf-469e-a725-e71aaa9f739d" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="random key is string" id="63a6a638-1897-4761-8914-bd158aa0b53b" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="FCS_RNG" id="8bcb7282-cfad-423c-80da-e3f11f861c14" ancestor="behaviour">
<documentation>See https://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/Zertifizierung/Interpretationen/AIS_20_AIS_31_Evaluation_of_random_number_generators_e.pdf?__blob=publicationFile
FCS_RNG.1.1
The TSF shall provide a [physical] random number generator that meet [with the statistical random number generator tests specified in FIPS 140-2, Security Requirements for Cryptographic Modules, section 4.9.1] .
FCS_RNG.1.2
The TSF shall provide random numbers that meet [ output sequences are cryptographically strong, as described in RFC 1750: Randomness Recommendations for Security. ].
</documentation>
</element>
</folder>
<folder name="2. Session management" id="0a63ddd8-b81e-4569-b814-f6f7ab12534c">
<element xsi:type="zenta:ZentaDiagramModel" name="Session management" id="041bb4a9-8e2c-427a-9ba0-b32db23276b8">
<child xsi:type="zenta:DiagramObject" id="b76ab1ac-7c90-473b-b282-97e251b44651" zentaElement="de4b570a-17b0-4872-a614-22acfca5eea2">
<bounds x="405" y="57" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="fe622264-9d33-4f86-956d-1e7f994b19c4" source="b76ab1ac-7c90-473b-b282-97e251b44651" target="48aa1504-16d8-48d5-a14c-de776e3a0dc0" relationship="834aa894-c859-4993-8c23-c393feca1a8a"/>
<sourceConnection xsi:type="zenta:Connection" id="75458bee-b28c-45cb-95e4-551fcb6d8068" source="b76ab1ac-7c90-473b-b282-97e251b44651" target="69ec9ae3-0c66-49ba-8077-b28430e4a38e" relationship="dadde405-1edf-496a-9b0b-ec50d17bfc37"/>
<sourceConnection xsi:type="zenta:Connection" id="702fc3c3-cacd-4e5e-a236-71dbaf6e4019" source="b76ab1ac-7c90-473b-b282-97e251b44651" target="4e6d5980-4cea-4be8-afba-ea62572a1d75" relationship="49cf3acb-d19b-452c-b194-8d3302f80a82"/>
</child>
<child xsi:type="zenta:DiagramObject" id="48aa1504-16d8-48d5-a14c-de776e3a0dc0" targetConnections="fe622264-9d33-4f86-956d-1e7f994b19c4" zentaElement="119f452d-1873-4b7a-8d33-4edaa3bbb020">
<bounds x="408" y="168" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="6f2ca3df-2f3f-45d2-8e1f-0b9703ad9339" source="48aa1504-16d8-48d5-a14c-de776e3a0dc0" target="8a3c7e80-c3ea-432a-865a-25248a3b4f42" relationship="e7584c52-5593-4c0a-be3c-508e130ac4cf"/>
<sourceConnection xsi:type="zenta:Connection" id="62506ee2-7798-40c2-bcbb-cb7b9ea7c56b" source="48aa1504-16d8-48d5-a14c-de776e3a0dc0" target="4984d7aa-3344-45f6-8c67-8f35961995bf" relationship="9083ff25-639e-45ca-a5f6-4364e5612732"/>
<sourceConnection xsi:type="zenta:Connection" id="c52bed8f-ec5d-4726-8de7-203491c294c0" source="48aa1504-16d8-48d5-a14c-de776e3a0dc0" target="38e113e0-4bea-45a6-a6e5-4db04244375f" relationship="c273be18-4df0-475c-b606-f0a437ad7c2e"/>
<sourceConnection xsi:type="zenta:Connection" id="bbb4b889-ef3c-463e-a462-81a299afc8bd" source="48aa1504-16d8-48d5-a14c-de776e3a0dc0" target="69ec9ae3-0c66-49ba-8077-b28430e4a38e" relationship="7d9d3e04-1d53-45b4-b6cd-909273a53c75"/>
</child>
<child xsi:type="zenta:DiagramObject" id="8a3c7e80-c3ea-432a-865a-25248a3b4f42" targetConnections="6f2ca3df-2f3f-45d2-8e1f-0b9703ad9339" zentaElement="28a7e764-de9d-46eb-900c-8c3fb4952c7f">
<bounds x="286" y="256" width="171" height="93"/>
</child>
<child xsi:type="zenta:DiagramObject" id="4984d7aa-3344-45f6-8c67-8f35961995bf" targetConnections="62506ee2-7798-40c2-bcbb-cb7b9ea7c56b" zentaElement="af8ea3b3-8c3e-4e22-aa0d-c85515bd33fc">
<bounds x="492" y="259" width="181" height="102"/>
</child>
<child xsi:type="zenta:DiagramObject" id="38e113e0-4bea-45a6-a6e5-4db04244375f" targetConnections="c52bed8f-ec5d-4726-8de7-203491c294c0" zentaElement="e8079ef0-fe98-4688-a8be-1566d4642d45">
<bounds x="728" y="249" width="137" height="100"/>
</child>
<child xsi:type="zenta:DiagramObject" id="69ec9ae3-0c66-49ba-8077-b28430e4a38e" targetConnections="75458bee-b28c-45cb-95e4-551fcb6d8068 bbb4b889-ef3c-463e-a462-81a299afc8bd" zentaElement="3227fa14-a975-4fbe-b57b-1e403acaaa69">
<bounds x="709" y="106" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="348bac56-66bf-49ad-a592-7b837dfff75b" source="69ec9ae3-0c66-49ba-8077-b28430e4a38e" target="7a700f94-d981-4263-93c3-017a4549b596" relationship="74ff043f-7e36-4aa2-82af-473ba4813e08"/>
<sourceConnection xsi:type="zenta:Connection" id="7936a73e-7fb8-4271-9862-513187f1263c" source="69ec9ae3-0c66-49ba-8077-b28430e4a38e" target="6cc901e8-7a69-4cc6-b812-0e38459fb1db" relationship="201adecd-7043-4e0b-8dc1-e77f263a3de7"/>
</child>
<child xsi:type="zenta:DiagramObject" id="7a700f94-d981-4263-93c3-017a4549b596" targetConnections="348bac56-66bf-49ad-a592-7b837dfff75b" zentaElement="3077c8e9-6ceb-4108-becf-569ad97d72f7">
<bounds x="940" y="91" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="6cc901e8-7a69-4cc6-b812-0e38459fb1db" targetConnections="7936a73e-7fb8-4271-9862-513187f1263c" zentaElement="7d48899c-2750-43c3-af4f-3fd9755f0654">
<bounds x="898" y="185" height="92"/>
</child>
<child xsi:type="zenta:DiagramObject" id="28558575-24f8-451a-b621-a64020cec6ed" targetConnections="3d243fdd-c16e-4f89-98ac-2f3ef66dfdb1" zentaElement="a5909025-b0be-42a5-bb6a-cf78c67d3681">
<bounds x="84" y="259" width="144" height="90"/>
</child>
<child xsi:type="zenta:DiagramObject" id="4e6d5980-4cea-4be8-afba-ea62572a1d75" targetConnections="702fc3c3-cacd-4e5e-a236-71dbaf6e4019" zentaElement="e170905e-5114-4fd6-b9ae-df3feede0e5f">
<bounds x="108" y="168" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="3d243fdd-c16e-4f89-98ac-2f3ef66dfdb1" source="4e6d5980-4cea-4be8-afba-ea62572a1d75" target="28558575-24f8-451a-b621-a64020cec6ed" relationship="55604bf2-8e32-4605-9e15-ab79a2f1dd71"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="Session management" id="119f452d-1873-4b7a-8d33-4edaa3bbb020" ancestor="service"/>
<element xsi:type="zenta:BasicObject" name="username and assurances can be obtained from the VoteManager" id="28a7e764-de9d-46eb-900c-8c3fb4952c7f" ancestor="behaviour">
<documentation>getWsUsername() and hasAssurance(String role)
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="VoteManager can be obtained through the IVoteManager interface with a WebServiceContext" id="af8ea3b3-8c3e-4e22-aa0d-c85515bd33fc" ancestor="behaviour">
<documentation>IVoteManager.getVoteManager(wsContext);</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="Hibernate session is obtainable from the VoteManager" id="e8079ef0-fe98-4688-a8be-1566d4642d45" ancestor="behaviour">
<documentation>VoteManager calls DBSessionManager in constructor time.
DBSessionManager is a singleton, and the only interface for closing database connection.
DBSessionManager is not intended to be called from any other place than VoteManager.</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="User" id="3227fa14-a975-4fbe-b57b-1e403acaaa69" ancestor="service">
<documentation>A type representing a persisted user identity.
It is backing wsContext.
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="the user has a proxy id" id="3077c8e9-6ceb-4108-becf-569ad97d72f7" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="the user has a list of assurances" id="7d48899c-2750-43c3-af4f-3fd9755f0654" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="context parameters can be obtained from the VoteManager" id="a5909025-b0be-42a5-bb6a-cf78c67d3681" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="get context parameter" id="e170905e-5114-4fd6-b9ae-df3feede0e5f" ancestor="service"/>
</folder>
<folder name="3. Vote related concepts" id="5d2419c6-4ab4-4672-a3c0-ba2d6b061c07">
<element xsi:type="zenta:ZentaDiagramModel" name="vote related concepts" id="b6d979d7-c27c-47c3-b3b9-dd224dbf209a" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="5d29e615-bad0-4335-9dae-9ddfd7efe306" zentaElement="de4b570a-17b0-4872-a614-22acfca5eea2">
<bounds x="390" y="79" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="5c52aaf8-9dc5-4da1-b16d-71425819cd34" source="5d29e615-bad0-4335-9dae-9ddfd7efe306" target="10d3506d-334b-48ea-a387-b98690830c2d" relationship="58ea38b4-4d14-4b54-b122-ae88eec1898c"/>
<sourceConnection xsi:type="zenta:Connection" id="eaada396-ef24-4f8b-8e1b-9c8d0595fa63" source="5d29e615-bad0-4335-9dae-9ddfd7efe306" target="cd7b402a-0770-443e-819e-fbc981162b55" relationship="075b259d-2d1c-4156-9dad-a761e307ab85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="cd7b402a-0770-443e-819e-fbc981162b55" targetConnections="eaada396-ef24-4f8b-8e1b-9c8d0595fa63" zentaElement="8db95d60-d5db-4283-a0c9-86fa15a01871">
<bounds x="537" y="171" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="c55e2aa7-8fb9-4045-ab9b-5886b90d921d" source="cd7b402a-0770-443e-819e-fbc981162b55" target="8ace8acb-dd9d-4d65-886f-d3eb5c7eb219" relationship="7e12ae95-2c6a-4d27-8328-8be3d1555429"/>
<sourceConnection xsi:type="zenta:Connection" id="a75c0a8e-9a10-44c5-b019-74cc442eb5c3" source="cd7b402a-0770-443e-819e-fbc981162b55" target="1629955e-80fa-4188-ab8e-4234e8f8acc0" relationship="1623faac-80c6-41e3-9ab4-b89ee1db9f59"/>
<sourceConnection xsi:type="zenta:Connection" id="71ab2cc2-31d4-4755-b0f3-c6c4f30c5ec1" source="cd7b402a-0770-443e-819e-fbc981162b55" target="220cbb1c-d723-41fc-9bc4-f8bcc74dd6b7" relationship="1b5b0afa-89bb-4b09-9a3d-be25f6fad14d"/>
</child>
<child xsi:type="zenta:DiagramObject" id="10d3506d-334b-48ea-a387-b98690830c2d" targetConnections="5c52aaf8-9dc5-4da1-b16d-71425819cd34" zentaElement="b46d19bb-27bf-46bf-9096-cea0caec2ca8">
<bounds x="42" y="168" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="af500dd3-5bd9-4d7e-a2a6-fb276b113bc7" source="10d3506d-334b-48ea-a387-b98690830c2d" target="13b59ad0-074f-4ee6-92d0-67a9991a42c5" relationship="ded3bc36-6333-405e-a701-bb5e31728c19"/>
<sourceConnection xsi:type="zenta:Connection" id="04dfd0b2-62ae-4caa-b83c-1ad13827c4c6" source="10d3506d-334b-48ea-a387-b98690830c2d" target="4e52c8eb-e8b9-449c-a94f-b47b70c81c48" relationship="e99d85e7-c2d1-421c-95ae-e6c1bc613587"/>
<sourceConnection xsi:type="zenta:Connection" id="ec199f7f-4552-4c3b-a6a8-f40485a3a8bc" source="10d3506d-334b-48ea-a387-b98690830c2d" target="7e265d52-b66c-4553-a476-dde4e12dd860" relationship="69b7ec74-b4f2-46b9-a05f-c08f9e0671d4"/>
</child>
<child xsi:type="zenta:DiagramObject" id="13b59ad0-074f-4ee6-92d0-67a9991a42c5" targetConnections="af500dd3-5bd9-4d7e-a2a6-fb276b113bc7" zentaElement="96b3aa1a-d34b-4c9b-bde2-643835f5ee75">
<bounds x="28" y="348" width="148" height="86"/>
</child>
<child xsi:type="zenta:DiagramObject" id="4e52c8eb-e8b9-449c-a94f-b47b70c81c48" targetConnections="04dfd0b2-62ae-4caa-b83c-1ad13827c4c6" zentaElement="3493106d-e806-47cb-9dc2-b19602c48f47">
<bounds x="14" y="456" width="176" height="101"/>
</child>
<child xsi:type="zenta:DiagramObject" id="7e265d52-b66c-4553-a476-dde4e12dd860" targetConnections="ec199f7f-4552-4c3b-a6a8-f40485a3a8bc" zentaElement="0154d918-52a9-499b-a6c4-7c0693ca6be6">
<bounds x="24" y="264" width="156"/>
</child>
<child xsi:type="zenta:DiagramObject" id="8ace8acb-dd9d-4d65-886f-d3eb5c7eb219" targetConnections="c55e2aa7-8fb9-4045-ab9b-5886b90d921d" zentaElement="3ed5fbe2-a269-417f-b8fd-b6a578928fd4">
<bounds x="579" y="276" width="178" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="1629955e-80fa-4188-ab8e-4234e8f8acc0" targetConnections="a75c0a8e-9a10-44c5-b019-74cc442eb5c3" zentaElement="33c51785-dfe3-4e40-9e91-fc39b155983e">
<bounds x="744" y="156" width="145" height="90"/>
</child>
<child xsi:type="zenta:DiagramObject" id="220cbb1c-d723-41fc-9bc4-f8bcc74dd6b7" targetConnections="71ab2cc2-31d4-4755-b0f3-c6c4f30c5ec1" zentaElement="3227fa14-a975-4fbe-b57b-1e403acaaa69">
<bounds x="634" y="78" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="339b0f49-804f-4793-bb18-1c797a36e417" zentaElement="e9cd11df-3ba8-438d-a9a5-7f6a16cdc311">
<bounds x="267" y="264" width="234" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="0cd3b3db-c4df-4b7a-b015-09cd2ffdab7a" zentaElement="7b3cb40c-8d51-41c6-b309-045f49a41113">
<bounds x="267" y="348" width="234" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e0b1b979-e4e2-4fa6-843e-a9cfdc5c13e1" zentaElement="f0cc7048-09be-4545-8363-592fb35a3959">
<bounds x="267" y="456" width="234" height="73"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="BeatTable" id="b46d19bb-27bf-46bf-9096-cea0caec2ca8" ancestor="service">
<documentation>The BeatTable is a matrix containing pairs of integers.
in BeatTable m;
m[a][b][0] is related to the number of beats candidate a beats candidate b, or the beat path weight related to the same
m[a][b][1] is the same but for b beating a
a and b are choices of a vote
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="CastVote" id="8db95d60-d5db-4283-a0c9-86fa15a01871" ancestor="service"/>
<element xsi:type="zenta:BasicObject" name="the pair related to a and b can be obtained" id="96b3aa1a-d34b-4c9b-bde2-643835f5ee75" ancestor="behaviour">
<documentation> by getPair(Choice a, Choice b)</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="the beat information related to a and b can be obtained for forward and backward" id="3493106d-e806-47cb-9dc2-b19602c48f47" ancestor="behaviour">
<documentation>by beatInformation(Choice a,Choice b, Direction direction)
where direction is either DIRECTION_FORWARD or DIRECTION_BACKWARD
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="the pair related to a and b can be set" id="0154d918-52a9-499b-a6c4-7c0693ca6be6" ancestor="behaviour">
<documentation>by setPair(Choice a, Choice b, Pair pair)
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="The preferences described by a cast vote can be obtained" id="3ed5fbe2-a269-417f-b8fd-b6a578928fd4" ancestor="behaviour">
<documentation>by List<RankedChoice> getPreferences()</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="The assurances of the voter can be obtained from a cast vote if canupdateis true" id="33c51785-dfe3-4e40-9e91-fc39b155983e" ancestor="behaviour">
<documentation>by List<String> getAssurances()
The CastVote actually stores the proxy ID for the voter, and consults the voter's User entity
</documentation>
</element>
</folder>
<folder name="4. Schulze method" id="83b5fc8d-f24e-4037-baaf-a42aaf4cc86c">
<element xsi:type="zenta:ZentaDiagramModel" name="Schulze method" id="dfaeacf4-ba1c-4437-9df3-c0abc3ef3407" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="6a836965-5c2a-4dfc-be44-21dd73c75fb9" targetConnections="f9d52ae3-978e-4d2e-aa0c-0ef59366d32f 31e40330-454f-4e20-93b9-e272404b84b8" zentaElement="a46cb764-224a-453f-bef7-214e7ae03e53">
<bounds x="77" y="216" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="1315449a-2e58-46a3-aee5-02b4d224e0d1" source="6a836965-5c2a-4dfc-be44-21dd73c75fb9" target="3b5cdcd8-6912-4628-8328-4e55838b985c" relationship="d078a7b4-c3b6-4005-9cf7-33cf53ea5efa"/>
<sourceConnection xsi:type="zenta:Connection" id="20e27a3d-717e-4ec0-b483-2af5e3e013b1" source="6a836965-5c2a-4dfc-be44-21dd73c75fb9" target="9437cdae-7a72-4198-84e8-f743fbfa6696" relationship="3dd53b2e-c689-450e-b8c6-d6997e43fd3e"/>
</child>
<child xsi:type="zenta:DiagramObject" id="5325b831-5074-4729-8755-7738f78260b8" zentaElement="88d8250d-67de-4b88-8974-d37300c6784e">
<bounds x="479" y="84" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="f9d52ae3-978e-4d2e-aa0c-0ef59366d32f" source="5325b831-5074-4729-8755-7738f78260b8" target="6a836965-5c2a-4dfc-be44-21dd73c75fb9" relationship="974c4283-42a6-4af2-b3f1-f3726c351e14"/>
<sourceConnection xsi:type="zenta:Connection" id="83295c91-e8d2-43c3-8949-3b90b7593882" source="5325b831-5074-4729-8755-7738f78260b8" target="51a5cdf5-4744-4618-bf90-f746643c33c7" relationship="77dc2ef0-4c56-485d-b232-002ce13a8d69"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3b5cdcd8-6912-4628-8328-4e55838b985c" targetConnections="1315449a-2e58-46a3-aee5-02b4d224e0d1" zentaElement="9f9827b2-5b86-4f82-9018-a496f5809fb5">
<bounds x="53" y="312" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b5d59a3a-6bf1-4145-aa0c-9e6f7ef26d8f" zentaElement="b46d19bb-27bf-46bf-9096-cea0caec2ca8">
<bounds x="756" y="108" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="ef90c796-79aa-450c-b601-49269a65b999" zentaElement="0ccd3455-e990-42bd-b287-a9ee079be910">
<bounds x="247" y="312" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3cc794a5-e4e7-4940-b7b3-c18fcfbfdd40" zentaElement="a2bbcd04-94c8-454c-824a-c9960d71bb76">
<bounds x="247" y="516" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="168699b4-2d02-40eb-a0de-14e6cd40ac3b" zentaElement="fe25b895-951c-4959-b66a-867e49e04ffe">
<bounds x="247" y="408" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="51a5cdf5-4744-4618-bf90-f746643c33c7" targetConnections="83295c91-e8d2-43c3-8949-3b90b7593882" zentaElement="96cebeda-63b0-444a-b4f8-7b6215971dd7">
<bounds x="696" y="216" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="ac407892-6b9a-418b-9fbf-828949e899d4" source="51a5cdf5-4744-4618-bf90-f746643c33c7" target="3cce2178-c9fb-4298-99e8-6bbda0ee40f5" relationship="25761c20-d84d-46d5-86cc-c942507ad5cc"/>
<sourceConnection xsi:type="zenta:Connection" id="0a3c5838-511e-45e8-9604-35f08acdaf36" source="51a5cdf5-4744-4618-bf90-f746643c33c7" target="bda72ecb-d96f-409e-b347-2e87a6a178d7" relationship="4d5b761c-7fe7-4074-a560-2b026621186c"/>
</child>
<child xsi:type="zenta:DiagramObject" id="299d2b0b-cc6e-4dac-96f9-aa7d83266064" zentaElement="21b13689-d943-4dc0-a40d-e0062ebcdbcd">
<bounds x="455" y="312" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3cce2178-c9fb-4298-99e8-6bbda0ee40f5" targetConnections="ac407892-6b9a-418b-9fbf-828949e899d4" zentaElement="d0326e46-3c7c-4b3e-ad4a-44321846b76d">
<bounds x="672" y="312" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bda72ecb-d96f-409e-b347-2e87a6a178d7" targetConnections="0a3c5838-511e-45e8-9604-35f08acdaf36" zentaElement="aa6718d6-fae6-4d2a-b124-538d75e94878">
<bounds x="672" y="408" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="2db33bed-4d45-4251-84e4-ee97c8930447" zentaElement="23494180-b746-4e58-b3e5-d49329121751">
<bounds x="879" y="312" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9875d8f7-e2a9-4cfe-a32d-24bfeb36442b" zentaElement="4a703498-634a-4fe5-a61a-c8f3c515153c">
<bounds x="879" y="516" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="0a187f98-af43-483a-91fb-faef6debd524" zentaElement="49435c63-16c0-4b33-bfef-ab1faf402c6a">
<bounds x="879" y="708" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="1e986e54-b786-4c02-8325-5061366880de" zentaElement="f1ec249f-cb8c-4118-97a8-f9712c22910a">
<bounds x="879" y="408" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="c5c10231-6670-482f-a48f-f3c4116d488a" zentaElement="a67d7264-8c1e-4c44-8d65-f5651c866d02">
<bounds x="852" y="612" width="217" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="333ca988-d48e-4977-9fbc-939f7ff5df6f" zentaElement="8db95d60-d5db-4283-a0c9-86fa15a01871">
<bounds x="1080" y="108" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="7a9a23d4-3bb9-4686-90b1-6660b38b76a5" zentaElement="9875bff4-6d61-480e-929e-fba1fe941bee">
<bounds x="1092" y="312" width="169" height="85"/>
</child>
<child xsi:type="zenta:DiagramObject" id="4123f7df-4e29-45af-9dda-afc0f550fcc7" zentaElement="ca6cc0bb-552b-42c4-b943-fe1521bc8ce0">
<bounds x="658" y="40" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="31e40330-454f-4e20-93b9-e272404b84b8" source="4123f7df-4e29-45af-9dda-afc0f550fcc7" target="6a836965-5c2a-4dfc-be44-21dd73c75fb9" relationship="b2736a80-f462-4347-ab0d-b13a5386f7e4"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9437cdae-7a72-4198-84e8-f743fbfa6696" targetConnections="20e27a3d-717e-4ec0-b483-2af5e3e013b1" zentaElement="e6b6e770-45f5-4bfc-889a-0f2f0b63d17b">
<bounds x="53" y="66" width="149"/>
<sourceConnection xsi:type="zenta:Connection" id="72fe35f0-8a9b-402b-b723-a43c41fdf293" source="9437cdae-7a72-4198-84e8-f743fbfa6696" target="150a9345-483d-48d8-ab54-69c9bea3cf6b" relationship="ecb8af26-e145-4bd6-bb5a-a5afadbaddf7"/>
</child>
<child xsi:type="zenta:DiagramObject" id="150a9345-483d-48d8-ab54-69c9bea3cf6b" targetConnections="72fe35f0-8a9b-402b-b723-a43c41fdf293" zentaElement="ebaf61f3-f935-4c42-a19a-091f2a304fa4">
<bounds x="336" y="30" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="05a42f56-2951-4647-81b0-9a5b2038e91d" zentaElement="959a09c9-0081-4e81-8587-f24f977e6906">
<bounds x="1213" y="19" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f67c9af4-9246-4d4b-b5c5-41a5312d39b9" zentaElement="c8a82dd0-879c-40a6-88ee-0118235e6c2d">
<bounds x="1251" y="168" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="bababa58-f445-4bc6-a709-af1956fe9ac9" source="f67c9af4-9246-4d4b-b5c5-41a5312d39b9" target="ddcf5d21-47d2-4c6d-8ae7-2baf0e19c44c" relationship="87900509-aa42-498d-9e9b-173ff4bab96a"/>
</child>
<child xsi:type="zenta:DiagramObject" id="ddcf5d21-47d2-4c6d-8ae7-2baf0e19c44c" targetConnections="bababa58-f445-4bc6-a709-af1956fe9ac9" zentaElement="7273e7d4-6fe2-4bd9-ad56-ec4b5d60694f">
<bounds x="1272" y="264" width="156"/>
<sourceConnection xsi:type="zenta:Connection" id="50336430-1272-447f-abd1-3d0d32e9a6bd" source="ddcf5d21-47d2-4c6d-8ae7-2baf0e19c44c" target="52002e05-6e26-429c-8bfd-f995c0a2fbde" relationship="7a4e312d-38a6-497e-9bc3-bdbf3aec1e5f"/>
</child>
<child xsi:type="zenta:DiagramObject" id="52002e05-6e26-429c-8bfd-f995c0a2fbde" targetConnections="50336430-1272-447f-abd1-3d0d32e9a6bd" zentaElement="65357076-fd9e-445e-a416-1db45b277860">
<bounds x="1309" y="354" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f1c8abe4-ef54-47cc-bb69-0f9e6345a416" targetConnections="3bd0935e-d3ae-488f-950f-67843a18df23" zentaElement="7c3929ac-9a1b-4af5-abe5-f3db3886cb36">
<bounds x="201" y="12" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="70929926-e6a1-49f7-9337-e56766d4924c" source="f1c8abe4-ef54-47cc-bb69-0f9e6345a416" target="75679d22-c686-49a5-8d8a-1a8ccd924a69" relationship="6b204328-25d0-4945-8463-319d93c6fadc"/>
</child>
<child xsi:type="zenta:DiagramObject" id="75679d22-c686-49a5-8d8a-1a8ccd924a69" targetConnections="70929926-e6a1-49f7-9337-e56766d4924c" zentaElement="9e967ad3-34c9-4e37-b012-44bb89c166b6">
<bounds x="144" y="120" width="193"/>
</child>
<child xsi:type="zenta:DiagramObject" id="6730566d-fca6-46c1-9f87-42fed05fafc9" zentaElement="066b8911-0a88-4fbc-96ac-8123d76a4c3d">
<bounds x="-48" y="0" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="3bd0935e-d3ae-488f-950f-67843a18df23" source="6730566d-fca6-46c1-9f87-42fed05fafc9" target="f1c8abe4-ef54-47cc-bb69-0f9e6345a416" relationship="29002814-2baf-4de6-b937-57f9c903b5c0"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="calculates winners until all choices are ignored" id="9f9827b2-5b86-4f82-9018-a496f5809fb5" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="if beats are different, the bigger wins" id="d0326e46-3c7c-4b3e-ad4a-44321846b76d" ancestor="behaviour">
<documentation>if beat1[forward] > beat2[forward] then beat1 wins, and vica versa
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="if beats tie, looses decide" id="aa6718d6-fae6-4d2a-b124-538d75e94878" ancestor="behaviour">
<documentation>if beat1[forward] = beat2[forward] and beat1[backward] > beat2[backward] then beat2 wins, and vica versa
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="the beat matrix contains the beats" id="9875bff4-6d61-480e-929e-fba1fe941bee" ancestor="behaviour">
<documentation>m[a,b][forward] contains the number of votes casts where a beats b
m[b,a][backward] contains the number of votes cast where b beats a
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="the elements corresponding to winners contain the number of looses backward" id="a67d7264-8c1e-4c44-8d65-f5651c866d02" ancestor="behaviour">
<documentation>m[a,b][backward] = n where n is the number of votes cast where b beats a</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="compare beats" id="96cebeda-63b0-444a-b4f8-7b6215971dd7" ancestor="service">
<documentation>inputs: Pair beat1, Pair beat2
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="rank candidates" id="a46cb764-224a-453f-bef7-214e7ae03e53" ancestor="service">
<documentation>input: BeatTable m
output: List<List<Choice>> winnerlist
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="BeatTable" id="ca6cc0bb-552b-42c4-b943-fe1521bc8ce0" ancestor="object">
<documentation>The BeatTable is a matrix containing pairs of integers.
in BeatTable m;
m[a][b][0] is related to the number of beats candidate a beats candidate b, or the beat path weight related to the same
m[a][b][1] is the same but for b beating a
a and b are choices of a vote
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="RankedWinnerList" id="e6b6e770-45f5-4bfc-889a-0f2f0b63d17b" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="3dd53b2e-c689-450e-b8c6-d6997e43fd3e" ancestor="outputs" source="a46cb764-224a-453f-bef7-214e7ae03e53" target="e6b6e770-45f5-4bfc-889a-0f2f0b63d17b"/>
<element xsi:type="zenta:BasicObject" name="WinnerList" id="ebaf61f3-f935-4c42-a19a-091f2a304fa4" ancestor="object">
<documentation>A list of choices
List<Choice>
</documentation>
</element>
<element xsi:type="zenta:BasicRelationship" id="ecb8af26-e145-4bd6-bb5a-a5afadbaddf7" ancestor="basicrelation" source="e6b6e770-45f5-4bfc-889a-0f2f0b63d17b" target="ebaf61f3-f935-4c42-a19a-091f2a304fa4"/>
<element xsi:type="zenta:BasicObject" name="Choice" id="8484ae7f-6edb-4125-bae8-17d80bd4020b" ancestor="entity"/>
<element xsi:type="zenta:BasicRelationship" id="117d4308-a48f-4706-987f-017f3cf59b15" ancestor="basicrelation" source="ebaf61f3-f935-4c42-a19a-091f2a304fa4" target="8484ae7f-6edb-4125-bae8-17d80bd4020b"/>
<element xsi:type="zenta:BasicObject" name="Pair" id="56d1cd65-75a1-433d-8192-56fa94fa60e9" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="5420d49f-dc13-4ad9-a26d-00dd9b1162d5" ancestor="basicrelation" source="ca6cc0bb-552b-42c4-b943-fe1521bc8ce0" target="56d1cd65-75a1-433d-8192-56fa94fa60e9"/>
<element xsi:type="zenta:BasicObject" name="Cast Vote" id="14d1161f-cbf4-4ee0-90db-7091e5dcb4f6" ancestor="entity">
<documentation>A type containing relevant information of a cast vote
The recorded vote looks something like this:
class CastVote {
String proxyId;
String voteIdentifier;
List <RankedChoice> preferences;
}
</documentation>
</element>
<element xsi:type="zenta:BasicRelationship" id="b2736a80-f462-4347-ab0d-b13a5386f7e4" ancestor="parameter" source="ca6cc0bb-552b-42c4-b943-fe1521bc8ce0" target="a46cb764-224a-453f-bef7-214e7ae03e53"/>
<element xsi:type="zenta:BasicObject" name="proxyId" id="959a09c9-0081-4e81-8587-f24f977e6906" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="ccc3ede7-87e9-44bd-b476-bda76f5db6e2" ancestor="basicrelation" source="14d1161f-cbf4-4ee0-90db-7091e5dcb4f6" target="959a09c9-0081-4e81-8587-f24f977e6906"/>
<element xsi:type="zenta:BasicObject" name="preferences" id="c8a82dd0-879c-40a6-88ee-0118235e6c2d" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="b60a3d0d-e461-46c9-9732-c22137b3040b" ancestor="basicrelation" source="14d1161f-cbf4-4ee0-90db-7091e5dcb4f6" target="c8a82dd0-879c-40a6-88ee-0118235e6c2d"/>
<element xsi:type="zenta:BasicObject" name="RankedChoice" id="7273e7d4-6fe2-4bd9-ad56-ec4b5d60694f" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="87900509-aa42-498d-9e9b-173ff4bab96a" ancestor="basicrelation" source="c8a82dd0-879c-40a6-88ee-0118235e6c2d" target="7273e7d4-6fe2-4bd9-ad56-ec4b5d60694f"/>
<element xsi:type="zenta:BasicObject" name="Rank" id="65357076-fd9e-445e-a416-1db45b277860" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="7a4e312d-38a6-497e-9bc3-bdbf3aec1e5f" ancestor="basicrelation" source="7273e7d4-6fe2-4bd9-ad56-ec4b5d60694f" target="65357076-fd9e-445e-a416-1db45b277860"/>
<element xsi:type="zenta:BasicObject" name="VoteResult" id="1bee4b6f-faae-4066-b733-8fbc90d9e516" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="21a8deb5-16f2-4cb7-ac88-c9a5c9e72586" ancestor="basicrelation" source="1bee4b6f-faae-4066-b733-8fbc90d9e516" target="14d1161f-cbf4-4ee0-90db-7091e5dcb4f6"/>
<element xsi:type="zenta:BasicObject" name="Vote" id="11f2d9f5-7580-4e02-803d-34736f4156ba" ancestor="entity"/>
<element xsi:type="zenta:BasicRelationship" id="064bc8d7-f59e-4345-8f9e-360e0d23c145" ancestor="basicrelation" source="1bee4b6f-faae-4066-b733-8fbc90d9e516" target="11f2d9f5-7580-4e02-803d-34736f4156ba"/>
<element xsi:type="zenta:BasicRelationship" id="a2101816-2698-499b-9d12-82ead5d6ab75" ancestor="basicrelation" source="11f2d9f5-7580-4e02-803d-34736f4156ba" target="8484ae7f-6edb-4125-bae8-17d80bd4020b"/>
<element xsi:type="zenta:BasicObject" name="endorser" id="e74c0391-ee0d-48cd-b14a-d7d808496b85" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="1c986b15-e389-4a3f-8df3-5d278eb12896" ancestor="basicrelation" source="8484ae7f-6edb-4125-bae8-17d80bd4020b" target="e74c0391-ee0d-48cd-b14a-d7d808496b85"/>
<element xsi:type="zenta:BasicObject" name="WinnerCalculatorService" id="9e967ad3-34c9-4e37-b012-44bb89c166b6" ancestor="class"/>
<element xsi:type="zenta:BasicRelationship" id="6b204328-25d0-4945-8463-319d93c6fadc" ancestor="application_component_contains" source="7c3929ac-9a1b-4af5-abe5-f3db3886cb36" target="9e967ad3-34c9-4e37-b012-44bb89c166b6"/>
<element xsi:type="zenta:BasicRelationship" id="29002814-2baf-4de6-b937-57f9c903b5c0" ancestor="application_component_contains" source="066b8911-0a88-4fbc-96ac-8123d76a4c3d" target="7c3929ac-9a1b-4af5-abe5-f3db3886cb36"/>
</folder>
</folder>
<folder name="13. list vote results" id="f3d6944b-aa87-4e61-9ba0-ae8be1a1f0b1">
<element xsi:type="zenta:ZentaDiagramModel" name="list vote results" id="0851a4e1-d169-4667-b24d-3463969a8611" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="c71f124a-297d-42d1-9d1e-6f66b0ff2221" targetConnections="a5b006ab-ef75-4c0e-b6a5-e9932a3b8fa2" zentaElement="3b2e88d7-580d-45c6-b182-e17b97b18bdb">
<bounds x="419" y="178" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="c34b9795-2b21-495a-8ec3-541b9820a085" source="c71f124a-297d-42d1-9d1e-6f66b0ff2221" target="d0ff33dc-fad9-4a4d-97ea-2b9f1cb98d8c" relationship="c1b9baa6-3307-47f2-93f3-5fadf9df4d30"/>
<sourceConnection xsi:type="zenta:Connection" id="da047e7a-922d-4e51-ac84-b871d4a9385b" source="c71f124a-297d-42d1-9d1e-6f66b0ff2221" target="946ab2ee-37d4-4fa4-9559-ed106dc6014a" relationship="111c508a-065c-4cd8-bd98-5b77e6e46fca"/>
<sourceConnection xsi:type="zenta:Connection" id="0007bda3-3750-4c82-8478-1a7f1be519b5" source="c71f124a-297d-42d1-9d1e-6f66b0ff2221" target="e5e2b1b5-2ba2-4e78-82dc-df8f2de79b21" relationship="f55f8ac2-92d4-4b77-866c-b200b7eeebaf"/>
<sourceConnection xsi:type="zenta:Connection" id="993a5eee-3912-43a5-a252-b12229799654" source="c71f124a-297d-42d1-9d1e-6f66b0ff2221" target="e4ef717a-4ab2-424d-9282-e8c64ad9ad62" relationship="c63dfd3a-6f40-4a31-b515-00ded6c76425"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b437e10f-fecd-4285-a042-bd7bfd62917d" zentaElement="7f02363b-d542-483a-8a14-9780b27bfe7d">
<bounds x="419" y="60" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="a5b006ab-ef75-4c0e-b6a5-e9932a3b8fa2" source="b437e10f-fecd-4285-a042-bd7bfd62917d" target="c71f124a-297d-42d1-9d1e-6f66b0ff2221" relationship="5fdbbb16-b60a-469e-8248-d6fced6b5e48"/>
</child>
<child xsi:type="zenta:DiagramObject" id="d0ff33dc-fad9-4a4d-97ea-2b9f1cb98d8c" targetConnections="c34b9795-2b21-495a-8ec3-541b9820a085" zentaElement="cec82af6-da66-4e9d-986c-3020e33e3ef2">
<bounds x="528" y="300" width="181"/>
</child>
<child xsi:type="zenta:DiagramObject" id="946ab2ee-37d4-4fa4-9559-ed106dc6014a" targetConnections="da047e7a-922d-4e51-ac84-b871d4a9385b" zentaElement="bdf93f2d-590c-4e52-8855-776207663f62">
<bounds x="250" y="300" width="181"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e5e2b1b5-2ba2-4e78-82dc-df8f2de79b21" targetConnections="0007bda3-3750-4c82-8478-1a7f1be519b5" zentaElement="11952201-ea1f-4eac-9bcc-90c456da566b">
<bounds x="250" y="398" width="181"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e4ef717a-4ab2-424d-9282-e8c64ad9ad62" targetConnections="993a5eee-3912-43a5-a252-b12229799654" zentaElement="d19b9434-e4a1-401d-b1c3-e7a6e5b9f203">
<bounds x="528" y="400" width="181"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="shows the list of vote result" id="cec82af6-da66-4e9d-986c-3020e33e3ef2" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="the list contains the generation times" id="bdf93f2d-590c-4e52-8855-776207663f62" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="the list contains whether the result is official" id="d19b9434-e4a1-401d-b1c3-e7a6e5b9f203" ancestor="behaviour">
<documentation>an official result is one with a timestamp
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="the lst contains the ids of the results" id="11952201-ea1f-4eac-9bcc-90c456da566b" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="list vote results" id="3b2e88d7-580d-45c6-b182-e17b97b18bdb" ancestor="service">
<documentation>GET /vote/<voteId>/results -> voteresultJSON.
The result contains for each assurances:
- the list of candidates with id, rank, the beat ratio for the next candidate(s), for the first whether it is Condorcet winner
- the two tables used in Schulze method
- additional statistics
</documentation>
</element>
</folder>
<folder name="14. get vote results" id="5af65682-ac39-4908-b343-9b960a77e774">
<element xsi:type="zenta:ZentaDiagramModel" name="get vote results" id="9c1dfb61-316b-4076-a042-a18e88b98007" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="16e7c541-55e9-4d58-9f73-b04de657f912" targetConnections="0f1304e7-63da-457e-a610-63b9cedc627d" zentaElement="e731155f-9018-40b7-a26f-03e128a3f242">
<bounds x="360" y="156" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="eba8bfec-e35e-47f8-a348-55266b000b51" source="16e7c541-55e9-4d58-9f73-b04de657f912" target="52d327c9-4cd1-458c-80b5-422b8f75917e" relationship="ab47e874-9194-4c0f-b42a-35a14a472e6d"/>
<sourceConnection xsi:type="zenta:Connection" id="934bd3ab-2ff9-4ea8-ac54-b54b4894f1be" source="16e7c541-55e9-4d58-9f73-b04de657f912" target="dedcfaf8-ccff-4a68-80e2-dccda7d32653" relationship="4551d379-ffc6-4056-9d45-6a82b69e7bd9"/>
<sourceConnection xsi:type="zenta:Connection" id="3e59fe1b-0cdb-4623-a630-b1ac548d1c7c" source="16e7c541-55e9-4d58-9f73-b04de657f912" target="f06cf0ed-cfe2-4774-be0a-392074d5d940" relationship="01f05afd-2171-4c20-8f8e-becde765f749"/>
<sourceConnection xsi:type="zenta:Connection" id="3a0a4d07-924e-48da-a8bc-dad7f7b59624" source="16e7c541-55e9-4d58-9f73-b04de657f912" target="cb7d4c94-347e-4cda-9738-25d0094a2abb" relationship="3c0a8631-0927-403b-aac4-e77ab5fa4dc1"/>
<sourceConnection xsi:type="zenta:Connection" id="c4c41d3b-d030-423b-88e9-e004f290df70" source="16e7c541-55e9-4d58-9f73-b04de657f912" target="f13082e9-e276-4399-8740-e7a07a9f2bfd" relationship="100da83a-f128-42cd-9a0d-f2ab3c22e509"/>
<sourceConnection xsi:type="zenta:Connection" id="6c820be8-1a77-4b5f-a150-e365cec07976" source="16e7c541-55e9-4d58-9f73-b04de657f912" target="768de0ab-c6c7-44a9-95a6-3a67c7fa7c49" relationship="7656c56e-c5db-41b7-b88e-607fc39959aa"/>
</child>
<child xsi:type="zenta:DiagramObject" id="c831aa61-43ed-44d0-b03c-9a21a548f95b" zentaElement="7f02363b-d542-483a-8a14-9780b27bfe7d">
<bounds x="360" y="60" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="0f1304e7-63da-457e-a610-63b9cedc627d" source="c831aa61-43ed-44d0-b03c-9a21a548f95b" target="16e7c541-55e9-4d58-9f73-b04de657f912" relationship="93913e0c-67f3-4f33-baf3-f5a04bd233b2"/>
</child>
<child xsi:type="zenta:DiagramObject" id="52d327c9-4cd1-458c-80b5-422b8f75917e" targetConnections="eba8bfec-e35e-47f8-a348-55266b000b51" zentaElement="4fe3bfc2-cfb7-426d-b0d2-6c0e586b055f">
<bounds x="180" y="264" width="177" height="72"/>
</child>
<child xsi:type="zenta:DiagramObject" id="dedcfaf8-ccff-4a68-80e2-dccda7d32653" targetConnections="934bd3ab-2ff9-4ea8-ac54-b54b4894f1be" zentaElement="a845ffc7-2b08-4a73-b2d4-9a8a4ef23ecb">
<bounds x="484" y="264" width="177" height="72"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f06cf0ed-cfe2-4774-be0a-392074d5d940" targetConnections="3e59fe1b-0cdb-4623-a630-b1ac548d1c7c" zentaElement="80c29e0c-aff6-476c-8cfd-e1128d753775">
<bounds x="484" y="364" width="177" height="72"/>
</child>
<child xsi:type="zenta:DiagramObject" id="cb7d4c94-347e-4cda-9738-25d0094a2abb" targetConnections="3a0a4d07-924e-48da-a8bc-dad7f7b59624" zentaElement="3c1facbd-5e6c-4004-bb66-4cc9370c11e6">
<bounds x="178" y="364" width="177" height="72"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f13082e9-e276-4399-8740-e7a07a9f2bfd" targetConnections="c4c41d3b-d030-423b-88e9-e004f290df70" zentaElement="18e8c30e-2e6f-40da-ab55-cd3cf64534cc">
<bounds x="583" y="160" width="210" height="69"/>
</child>
<child xsi:type="zenta:DiagramObject" id="768de0ab-c6c7-44a9-95a6-3a67c7fa7c49" targetConnections="6c820be8-1a77-4b5f-a150-e365cec07976" zentaElement="eab0d3b5-87f3-4476-863f-f60bd0bed800">
<bounds x="729" y="275" width="184"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="get vote result" id="e731155f-9018-40b7-a26f-03e128a3f242" ancestor="service"/>
<element xsi:type="zenta:BasicObject" name="returns the vote result" id="4fe3bfc2-cfb7-426d-b0d2-6c0e586b055f" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="returns the vote result computation time" id="3c1facbd-5e6c-4004-bb66-4cc9370c11e6" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="returns the vote result id" id="80c29e0c-aff6-476c-8cfd-e1128d753775" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="returns the vote result timestamp" id="a845ffc7-2b08-4a73-b2d4-9a8a4ef23ecb" ancestor="behaviour"/>
</folder>
<folder name="15. Update assurances" id="d5f71016-d541-4dba-a0e1-eb7a1257b82d">
<element xsi:type="zenta:ZentaDiagramModel" name="update assurances" id="133762be-6d02-4ad5-9c11-329fead1dbd6">
<child xsi:type="zenta:DiagramObject" id="98c7ae84-d61d-47b4-9481-14c04a96ad09" targetConnections="98bf406b-49fe-4a98-9b4b-b4ad739bd0e8" zentaElement="6ca97724-9c4f-47c9-a916-17068217c80c">
<bounds x="373" y="140" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="20e2f0ba-619d-42a9-8696-c62b585f75d4" source="98c7ae84-d61d-47b4-9481-14c04a96ad09" target="3ca063c3-99e6-4b77-96b0-e225706193b9" relationship="c82fd39e-ff0d-4eeb-8663-24caf2ce43d8"/>
<sourceConnection xsi:type="zenta:Connection" id="0f4198c0-74a6-4f16-af72-d801df324a62" source="98c7ae84-d61d-47b4-9481-14c04a96ad09" target="33f25959-5278-469e-aed0-204e4afecf57" relationship="8f4aca37-fd67-44b1-b405-daab43eb9881"/>
<sourceConnection xsi:type="zenta:Connection" id="06eebcb5-de07-45d5-9778-9ac5ef7b3d29" source="98c7ae84-d61d-47b4-9481-14c04a96ad09" target="f4e05378-0088-4fa4-9777-71771d6eb375" relationship="bf1b76b9-2321-454f-895d-118f9d4c240d"/>
</child>
<child xsi:type="zenta:DiagramObject" id="953988df-2442-496b-a7b4-7e64edccb149" zentaElement="7f02363b-d542-483a-8a14-9780b27bfe7d">
<bounds x="373" y="36" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="98bf406b-49fe-4a98-9b4b-b4ad739bd0e8" source="953988df-2442-496b-a7b4-7e64edccb149" target="98c7ae84-d61d-47b4-9481-14c04a96ad09" relationship="bda8444b-7a04-4de0-bdda-5e474af6783d"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3ca063c3-99e6-4b77-96b0-e225706193b9" targetConnections="20e2f0ba-619d-42a9-8696-c62b585f75d4" zentaElement="cc0a9fa0-383f-4cd8-a50f-126ad2f1aafb">
<bounds x="180" y="275" width="205" height="74"/>
</child>
<child xsi:type="zenta:DiagramObject" id="33f25959-5278-469e-aed0-204e4afecf57" targetConnections="0f4198c0-74a6-4f16-af72-d801df324a62" zentaElement="4d4411ed-c986-4008-827d-ad70881355a6">
<bounds x="492" y="275" width="205" height="74"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f4e05378-0088-4fa4-9777-71771d6eb375" targetConnections="06eebcb5-de07-45d5-9778-9ac5ef7b3d29" zentaElement="3227fa14-a975-4fbe-b57b-1e403acaaa69">
<bounds x="588" y="140" width="-1" height="-1"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="obtains the current list of assurances through the relevant ADA web service" id="cc0a9fa0-383f-4cd8-a50f-126ad2f1aafb" ancestor="behaviour"/>
<element xsi:type="zenta:BasicObject" name="update assurances" id="6ca97724-9c4f-47c9-a916-17068217c80c" ancestor="service">
<documentation>Updates the assurances of all users using the appropriate ADA Web Service
</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="Updates all the User entities with the current set of assurances" id="4d4411ed-c986-4008-827d-ad70881355a6" ancestor="behaviour"/>
</folder>
</folder>
<folder name="1. Introduction" id="5e821d11-c002-43c9-bb45-e765e1662710">
<folder name="Application structure" id="dfecc0ff-3051-4221-8049-ef6b13029348">
<folder name="Vote Manager" id="2488dce1-76ce-4e15-86b1-9e339364114f">
<element xsi:type="zenta:ZentaDiagramModel" name="Vote Manager" id="70d89132-0c72-45b2-b366-928262f51124" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="ddb8151f-cddb-4d6c-b1f0-620cf1789b8d" targetConnections="a8a4debb-8b6b-4b6f-97a2-7af1ddaa6073" zentaElement="8ebf64c7-c9ca-441c-9679-62419258ff01">
<bounds x="464" y="96" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="3c487f8d-4cbd-4884-8dfe-883a10199fc0" source="ddb8151f-cddb-4d6c-b1f0-620cf1789b8d" target="7b2f533d-2551-4436-b74f-09215afdd1ee" relationship="957b45d6-923d-4dd3-8ee4-4181a9120f42"/>
</child>
<child xsi:type="zenta:DiagramObject" id="7b2f533d-2551-4436-b74f-09215afdd1ee" targetConnections="3c487f8d-4cbd-4884-8dfe-883a10199fc0" zentaElement="5f1edf34-a802-4a5f-8c39-e5cf38b4fd61">
<bounds x="674" y="96" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9f72cf2e-d3a7-4afe-8d1b-a3cc92fdceb7" targetConnections="83896681-9f09-4758-93c9-91084900d5c2" zentaElement="b9542d5c-06d0-4aeb-9c2c-097653c5432a">
<bounds x="232" y="96" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="a8a4debb-8b6b-4b6f-97a2-7af1ddaa6073" source="9f72cf2e-d3a7-4afe-8d1b-a3cc92fdceb7" target="ddb8151f-cddb-4d6c-b1f0-620cf1789b8d" relationship="076f35b5-cc88-4650-912f-61f8445db1bd"/>
</child>
<child xsi:type="zenta:DiagramObject" id="c1f3e58d-2603-44bd-aa00-ccb12b73909b" zentaElement="5db3a652-3284-417e-b6ca-21541319770a">
<bounds x="48" y="96" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="83896681-9f09-4758-93c9-91084900d5c2" source="c1f3e58d-2603-44bd-aa00-ccb12b73909b" target="9f72cf2e-d3a7-4afe-8d1b-a3cc92fdceb7" relationship="5ad3618b-64b8-4cde-8f3b-7b81746420ad"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="Session Factory Manager" id="5f1edf34-a802-4a5f-8c39-e5cf38b4fd61" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="Choice Manager" id="b9542d5c-06d0-4aeb-9c2c-097653c5432a" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="Vote Registry" id="5db3a652-3284-417e-b6ca-21541319770a" ancestor="application_component"/>
</folder>
<element xsi:type="zenta:ZentaDiagramModel" name="Structure" id="4022144e-9acc-4869-aee3-24aa0c6eef4a">
<child xsi:type="zenta:DiagramObject" id="89917c67-b9ee-49db-af52-d407f15fe164" zentaElement="8ebf64c7-c9ca-441c-9679-62419258ff01">
<bounds x="216" y="192" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="9094e78c-bca2-450f-a407-1a14c62040d2" source="89917c67-b9ee-49db-af52-d407f15fe164" target="d129d766-73d0-4f2b-9667-366f8a0d943b" relationship="0cd80b9d-4fd1-466e-93db-03064515a46d"/>
</child>
<child xsi:type="zenta:DiagramObject" id="dbde827e-52b3-47e6-b72c-18158edacb8f" zentaElement="1537f6f0-4b4c-4d8c-ad95-4c245ebef529">
<bounds x="216" y="288" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="2bebb69f-7617-4831-8d09-a4b3946e1272" source="dbde827e-52b3-47e6-b72c-18158edacb8f" target="aa01c1f7-336e-42cb-b9c1-37e89da8d6f6" relationship="1f4bc88c-1fd9-4417-9d3a-02f97673a01a"/>
</child>
<child xsi:type="zenta:DiagramObject" id="fb728802-3c77-4799-b208-28d35d07746c" zentaElement="f0b62ad0-c63b-4887-93f2-1bf37a5cdc29">
<bounds x="212" y="82" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="e3149356-0eed-44ac-837e-a1d0b6b849a7" source="fb728802-3c77-4799-b208-28d35d07746c" target="6e6f86b3-c64e-4de3-879f-820ba7037c70" relationship="062f36f6-2b6c-42b4-9993-d65ffd20111c"/>
<sourceConnection xsi:type="zenta:Connection" id="a8b9e300-6e54-48a5-81e1-598a829bb74f" source="fb728802-3c77-4799-b208-28d35d07746c" target="36b4a9b5-bf5f-470b-b2cd-48baababac7e" relationship="d1c8ba33-02d0-4304-8012-ed0beddd1afb"/>
</child>
<child xsi:type="zenta:DiagramObject" id="d129d766-73d0-4f2b-9667-366f8a0d943b" targetConnections="9094e78c-bca2-450f-a407-1a14c62040d2" zentaElement="9386718b-3caf-4152-8386-0df9deeb35d3">
<bounds x="430" y="198" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="aa01c1f7-336e-42cb-b9c1-37e89da8d6f6" targetConnections="2bebb69f-7617-4831-8d09-a4b3946e1272" zentaElement="7f02363b-d542-483a-8a14-9780b27bfe7d">
<bounds x="435" y="289" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="6e6f86b3-c64e-4de3-879f-820ba7037c70" targetConnections="e3149356-0eed-44ac-837e-a1d0b6b849a7" zentaElement="84b84bfe-ad1c-41ef-892b-1eea8d6f49d0">
<bounds x="456" y="120" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="36b4a9b5-bf5f-470b-b2cd-48baababac7e" targetConnections="a8b9e300-6e54-48a5-81e1-598a829bb74f" zentaElement="24b1064c-cd2d-4a11-9567-a8b00ec3d39c">
<bounds x="456" y="48" width="169"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bbb50e21-1c04-4bd4-8892-583e62d738d4" zentaElement="066b8911-0a88-4fbc-96ac-8123d76a4c3d">
<bounds x="49" y="41" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="efd3cf1d-3643-4b71-b858-076f1168453b" source="bbb50e21-1c04-4bd4-8892-583e62d738d4" target="46c8d9a5-4af3-4efe-940c-81c3fcc2c597" relationship="29002814-2baf-4de6-b937-57f9c903b5c0"/>
</child>
<child xsi:type="zenta:DiagramObject" id="46c8d9a5-4af3-4efe-940c-81c3fcc2c597" targetConnections="efd3cf1d-3643-4b71-b858-076f1168453b" zentaElement="7c3929ac-9a1b-4af5-abe5-f3db3886cb36">
<bounds x="48" y="136" width="-1" height="-1"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="Organisation and ballot manager" id="f0b62ad0-c63b-4887-93f2-1bf37a5cdc29" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="Vote Manager" id="8ebf64c7-c9ca-441c-9679-62419258ff01" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="Tallying Engine" id="1537f6f0-4b4c-4d8c-ad95-4c245ebef529" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="Manage Ballots" id="84b84bfe-ad1c-41ef-892b-1eea8d6f49d0" ancestor="e1dcc278-0e1a-4399-99a4-04706212b230"/>
<element xsi:type="zenta:BasicObject" name="Store organisational structure" id="24b1064c-cd2d-4a11-9567-a8b00ec3d39c" ancestor="e1dcc278-0e1a-4399-99a4-04706212b230"/>
<element xsi:type="zenta:BasicObject" name="Vote" id="7f02363b-d542-483a-8a14-9780b27bfe7d" ancestor="e1dcc278-0e1a-4399-99a4-04706212b230"/>
<element xsi:type="zenta:BasicObject" name="Supporting functionality" id="de4b570a-17b0-4872-a614-22acfca5eea2" ancestor="e1dcc278-0e1a-4399-99a4-04706212b230"/>
<element xsi:type="zenta:BasicObject" name="Schulze method" id="88d8250d-67de-4b88-8974-d37300c6784e" ancestor="e1dcc278-0e1a-4399-99a4-04706212b230">
<documentation>see https://github.com/andrewcmyers/civs/blob/master/cgi-bin/beatpath2.pm for a Schulze implementation</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="org.rulez.demokracia.pdengine" id="066b8911-0a88-4fbc-96ac-8123d76a4c3d" ancestor="package"/>
<element xsi:type="zenta:BasicObject" name="votecalculator" id="7c3929ac-9a1b-4af5-abe5-f3db3886cb36" ancestor="package"/>
</folder>
<element xsi:type="zenta:ZentaDiagramModel" name="voting module" id="55c379cd-fe64-4398-9853-79ba4f778f78" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="762e25ba-c148-4c44-a062-64f7bc514580" zentaElement="9386718b-3caf-4152-8386-0df9deeb35d3">
<bounds x="624" y="216" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e2508bb2-d41b-483b-8162-2fe52775f4d4" zentaElement="7f02363b-d542-483a-8a14-9780b27bfe7d">
<bounds x="252" y="492" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="317333b3-d3bb-43c4-91f1-3c760d227cca" source="e2508bb2-d41b-483b-8162-2fe52775f4d4" target="9067ef58-7d1c-4e7d-b8bd-fb6903b8dcfa" relationship="5fdbbb16-b60a-469e-8248-d6fced6b5e48"/>
<sourceConnection xsi:type="zenta:Connection" id="4bdc122f-7da1-43c6-81df-67ddb7b99575" source="e2508bb2-d41b-483b-8162-2fe52775f4d4" target="9893d6ee-f740-425f-bfad-b73d18a6417e" relationship="bda8444b-7a04-4de0-bdda-5e474af6783d"/>
<sourceConnection xsi:type="zenta:Connection" id="0c6c1a3e-31e3-4463-bc9b-ed8b3e0ba096" source="e2508bb2-d41b-483b-8162-2fe52775f4d4" target="35b8638f-aea8-46da-8468-2c74eb7bc11d" relationship="93913e0c-67f3-4f33-baf3-f5a04bd233b2"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3fdc134b-c407-4efd-93d6-114b29c67eff" zentaElement="84b84bfe-ad1c-41ef-892b-1eea8d6f49d0">
<bounds x="599" y="318" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="a473d46c-08d9-40e9-ab46-14e78f02dfd9" zentaElement="24b1064c-cd2d-4a11-9567-a8b00ec3d39c">
<bounds x="780" y="318" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9067ef58-7d1c-4e7d-b8bd-fb6903b8dcfa" targetConnections="317333b3-d3bb-43c4-91f1-3c760d227cca" zentaElement="3b2e88d7-580d-45c6-b182-e17b97b18bdb">
<bounds x="482" y="401" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9893d6ee-f740-425f-bfad-b73d18a6417e" targetConnections="4bdc122f-7da1-43c6-81df-67ddb7b99575" zentaElement="6ca97724-9c4f-47c9-a916-17068217c80c">
<bounds x="84" y="600" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="35b8638f-aea8-46da-8468-2c74eb7bc11d" targetConnections="0c6c1a3e-31e3-4463-bc9b-ed8b3e0ba096" zentaElement="e731155f-9018-40b7-a26f-03e128a3f242">
<bounds x="234" y="600" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="6af52717-bc30-49de-9263-7391dab2cbd4" zentaElement="de4b570a-17b0-4872-a614-22acfca5eea2">
<bounds x="712" y="449" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="0e5689a5-229c-44d5-94be-ecd2bed58d0b" source="6af52717-bc30-49de-9263-7391dab2cbd4" target="44704b53-6a72-4470-9ede-4f3de4121555" relationship="49cf3acb-d19b-452c-b194-8d3302f80a82"/>
<sourceConnection xsi:type="zenta:Connection" id="fda5e63f-1af4-436b-babe-183f0331c3e3" source="6af52717-bc30-49de-9263-7391dab2cbd4" target="952f5670-edc4-4e96-8e6a-74d1572676aa" relationship="58ea38b4-4d14-4b54-b122-ae88eec1898c"/>
<sourceConnection xsi:type="zenta:Connection" id="409322aa-7091-4641-b6f9-77b743816f9e" source="6af52717-bc30-49de-9263-7391dab2cbd4" target="9ad90ef3-0bbe-48aa-b43b-1a3833a41b9d" relationship="075b259d-2d1c-4156-9dad-a761e307ab85"/>
<sourceConnection xsi:type="zenta:Connection" id="bd1e61aa-3011-4152-a158-a1e5a9a22cc3" source="6af52717-bc30-49de-9263-7391dab2cbd4" target="a58f2d6f-dd38-444d-8c5e-95048af27ed7" relationship="834aa894-c859-4993-8c23-c393feca1a8a"/>
<sourceConnection xsi:type="zenta:Connection" id="4125ec3e-24db-4369-9856-5808a8beffe9" source="6af52717-bc30-49de-9263-7391dab2cbd4" target="364f7818-42be-452a-ae93-9ecaf47c1599" relationship="dadde405-1edf-496a-9b0b-ec50d17bfc37"/>
<sourceConnection xsi:type="zenta:Connection" id="99e13aa5-a74d-4016-878b-bc56534c859a" source="6af52717-bc30-49de-9263-7391dab2cbd4" target="adb4224b-37a9-435d-a54d-3747a4889585" relationship="b25a25e2-eab6-4daa-8d86-be3c809218c8"/>
</child>
<child xsi:type="zenta:DiagramObject" id="44704b53-6a72-4470-9ede-4f3de4121555" targetConnections="0e5689a5-229c-44d5-94be-ecd2bed58d0b" zentaElement="e170905e-5114-4fd6-b9ae-df3feede0e5f">
<bounds x="749" y="579" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="952f5670-edc4-4e96-8e6a-74d1572676aa" targetConnections="fda5e63f-1af4-436b-babe-183f0331c3e3" zentaElement="b46d19bb-27bf-46bf-9096-cea0caec2ca8">
<bounds x="1049" y="579" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9ad90ef3-0bbe-48aa-b43b-1a3833a41b9d" targetConnections="409322aa-7091-4641-b6f9-77b743816f9e" zentaElement="8db95d60-d5db-4283-a0c9-86fa15a01871">
<bounds x="749" y="679" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="a58f2d6f-dd38-444d-8c5e-95048af27ed7" targetConnections="bd1e61aa-3011-4152-a158-a1e5a9a22cc3" zentaElement="119f452d-1873-4b7a-8d33-4edaa3bbb020">
<bounds x="899" y="679" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="364f7818-42be-452a-ae93-9ecaf47c1599" targetConnections="4125ec3e-24db-4369-9856-5808a8beffe9" zentaElement="3227fa14-a975-4fbe-b57b-1e403acaaa69">
<bounds x="1049" y="679" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="adb4224b-37a9-435d-a54d-3747a4889585" targetConnections="99e13aa5-a74d-4016-878b-bc56534c859a" zentaElement="083af6ee-5e6e-4949-a7d6-82cf3936b242">
<bounds x="749" y="779" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="8661e276-7633-4d9e-9a0b-079baab4845a" zentaElement="88d8250d-67de-4b88-8974-d37300c6784e">
<bounds x="238" y="717" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="2c7e7a65-e634-4eda-9dc4-fdc00318c8fb" source="8661e276-7633-4d9e-9a0b-079baab4845a" target="300bb5e7-86d8-4cba-8823-4b94d633f548" relationship="974c4283-42a6-4af2-b3f1-f3726c351e14"/>
<sourceConnection xsi:type="zenta:Connection" id="25de2988-5ebe-4f41-bc88-66f3dd2fcea0" source="8661e276-7633-4d9e-9a0b-079baab4845a" target="e4de2564-9165-428d-a7c7-e2f86adf9ec6" relationship="77dc2ef0-4c56-485d-b232-002ce13a8d69"/>
</child>
<child xsi:type="zenta:DiagramObject" id="300bb5e7-86d8-4cba-8823-4b94d633f548" targetConnections="2c7e7a65-e634-4eda-9dc4-fdc00318c8fb" zentaElement="a46cb764-224a-453f-bef7-214e7ae03e53">
<bounds x="196" y="807" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e4de2564-9165-428d-a7c7-e2f86adf9ec6" targetConnections="25de2988-5ebe-4f41-bc88-66f3dd2fcea0" zentaElement="96cebeda-63b0-444a-b4f8-7b6215971dd7">
<bounds x="496" y="907" width="-1" height="-1"/>
</child>
</element>
</folder>
<folder name="3. internal infrastructures, coding rules" id="b3cf8818-b0f1-439d-a589-a49ed9546378">
<documentation>The following rules apply:
</documentation>
<element xsi:type="zenta:ZentaDiagramModel" name="Internal infrastructures" id="ad18abcd-84aa-49fa-89a4-1715a5ecce38">
<child xsi:type="zenta:DiagramObject" id="47368887-20bf-43df-a4da-0cb55ddb1df9" zentaElement="0c8aa453-6edf-4dcf-b6cd-541ea8f1537d">
<bounds x="159" y="72" width="-1" height="-1"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="ReportedError" id="0c8aa453-6edf-4dcf-b6cd-541ea8f1537d" ancestor="application_component">
<documentation>This is an exception. It is thrown to signal a condition where the request cannot be fulfilled because the business logic does not allow it.
It have a message describing the problem, and a list of String arguments which can add additional informations (e.g. the objects which have problems.
The point is that the outer interface can distinguish between error branches of the business logic and internal errors, and communicate to the caller accordingly.
</documentation>
</element>
<element xsi:type="zenta:BasicRelationship" id="0cd80b9d-4fd1-466e-93db-03064515a46d" ancestor="32839108-9436-4144-b4f0-73069dc7d383" source="8ebf64c7-c9ca-441c-9679-62419258ff01" target="9386718b-3caf-4152-8386-0df9deeb35d3"/>
<element xsi:type="zenta:BasicRelationship" id="1f4bc88c-1fd9-4417-9d3a-02f97673a01a" ancestor="32839108-9436-4144-b4f0-73069dc7d383" source="1537f6f0-4b4c-4d8c-ad95-4c245ebef529" target="7f02363b-d542-483a-8a14-9780b27bfe7d"/>
<element xsi:type="zenta:BasicRelationship" id="062f36f6-2b6c-42b4-9993-d65ffd20111c" ancestor="32839108-9436-4144-b4f0-73069dc7d383" source="f0b62ad0-c63b-4887-93f2-1bf37a5cdc29" target="84b84bfe-ad1c-41ef-892b-1eea8d6f49d0"/>
<element xsi:type="zenta:BasicRelationship" id="d1c8ba33-02d0-4304-8012-ed0beddd1afb" ancestor="32839108-9436-4144-b4f0-73069dc7d383" source="f0b62ad0-c63b-4887-93f2-1bf37a5cdc29" target="24b1064c-cd2d-4a11-9567-a8b00ec3d39c"/>
</folder>
<folder name="Data Model" id="ca78938b-09bd-4969-aed1-16b92f052674">
<folder name="foreign data" id="e81038db-3741-4851-808f-028e12ad7955">
<element xsi:type="zenta:BasicObject" name="java.security.SecureRandom" id="java.security.SecureRandom" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="java.util.logging.Logger" id="java.util.logging.Logger" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.core.io.Resource" id="org.springframework.core.io.Resource" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="java.security.KeyStore" id="java.security.KeyStore" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="java.util.Set" id="java.util.Set" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="long" id="long" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="com.google.gson.ExclusionStrategy" id="com.google.gson.ExclusionStrategy" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="java.util.concurrent.ConcurrentHashMap" id="java.util.concurrent.ConcurrentHashMap" ancestor="application_component"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler" id="org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler" ancestor="class"/>
<element xsi:type="zenta:BasicObject" name="java.lang.Object" id="java.lang.Object" ancestor="class"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter" id="org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter" ancestor="class"/>
<element xsi:type="zenta:BasicObject" name="javax.persistence.Inheritance" id="javax.persistence.Inheritance" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.boot.autoconfigure.SpringBootApplication" id="org.springframework.boot.autoconfigure.SpringBootApplication" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.boot.context.properties.EnableConfigurationProperties" id="org.springframework.boot.context.properties.EnableConfigurationProperties" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.stereotype.Repository" id="org.springframework.stereotype.Repository" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.web.bind.annotation.ControllerAdvice" id="org.springframework.web.bind.annotation.ControllerAdvice" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.web.bind.annotation.ResponseStatus" id="org.springframework.web.bind.annotation.ResponseStatus" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.web.bind.annotation.RestController" id="org.springframework.web.bind.annotation.RestController" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.context.annotation.Profile" id="org.springframework.context.annotation.Profile" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.security.config.annotation.web.configuration.EnableWebSecurity" id="org.springframework.security.config.annotation.web.configuration.EnableWebSecurity" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.stereotype.Component" id="org.springframework.stereotype.Component" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="java.lang.SuppressWarnings" id="java.lang.SuppressWarnings" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="lombok.Setter" id="lombok.Setter" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="javax.persistence.Entity" id="javax.persistence.Entity" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="lombok.Getter" id="lombok.Getter" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="org.springframework.stereotype.Service" id="org.springframework.stereotype.Service" ancestor="annotation"/>
<element xsi:type="zenta:BasicObject" name="com.google.gson.JsonObject" id="com.google.gson.JsonObject" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.lang.Integer" id="java.lang.Integer" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.security.Principal" id="java.security.Principal" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="org.rulez.demokracia.pdengine.beattable.BeatTable.Direction" id="org.rulez.demokracia.pdengine.beattable.BeatTable.Direction" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="int" id="int" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.lang.RuntimeException" id="java.lang.RuntimeException" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.util.Map" id="java.util.Map" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.util.Collection" id="java.util.Collection" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="boolean" id="boolean" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.util.List" id="java.util.List" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="void" id="void" ancestor="object"/>
<element xsi:type="zenta:BasicObject" name="java.lang.String" id="java.lang.String" ancestor="object"/>
<element xsi:type="zenta:ZentaDiagramModel" name="Foreign data" id="3dd1824b-fd11-4a39-820a-424833333142">
<child xsi:type="zenta:DiagramObject" id="774641aa-da47-45bb-918a-5b351513643f" zentaElement="boolean">
<bounds x="77" y="51" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b04eb50c-a831-448f-9fac-f8906427877b" zentaElement="com.google.gson.JsonObject">
<bounds x="372" y="51" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="79efd5d0-72f6-4e38-83fa-475fbd7006c4" zentaElement="int">
<bounds x="77" y="139" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="8b301cbc-48a8-4e3a-b857-a8d6a9a0427e" zentaElement="java.lang.Integer">
<bounds x="372" y="139" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="cae2cbda-7d54-4b65-b96c-f3ce922550c9" zentaElement="java.lang.RuntimeException">
<bounds x="648" y="139" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="d424da1e-2e57-4bb9-9378-0727bc8ba81c" zentaElement="java.lang.String">
<bounds x="77" y="239" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="de063a24-969b-464e-bdc6-bf10ece9a22c" zentaElement="java.security.Principal">
<bounds x="372" y="239" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="31efc3c8-edcb-4bf4-87d2-6550646f8902" zentaElement="java.util.Collection">
<bounds x="648" y="239" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b200d884-460e-4f49-8fc8-4a923999f70f" zentaElement="java.util.List">
<bounds x="77" y="339" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="46e7bc4d-a7a8-46c5-a756-422f1e4f5e3a" zentaElement="java.util.Map">
<bounds x="372" y="339" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="726d394e-8dd1-4a3c-b931-c029b70735e9" zentaElement="KeyType">
<bounds x="648" y="339" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="34e3749d-f15b-494a-926e-405a76299eff" zentaElement="org.rulez.demokracia.pdengine.beattable.BeatTable.Direction">
<bounds x="77" y="439" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bf6632f0-dac7-44aa-9acf-c349905aa164" zentaElement="ValueType">
<bounds x="372" y="439" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="93b80293-c23d-49ad-a0ac-f89a94aeb516" zentaElement="void">
<bounds x="648" y="439" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="21421ef3-67b7-4762-a474-e1e9c2ddff8e" zentaElement="30582e90-f8ea-4033-b89f-710cf0ee59b4">
<bounds x="648" y="51" width="200"/>
</child>
<child xsi:type="zenta:DiagramObject" id="83e7e615-4512-4b88-8498-6ac54ee051a9" zentaElement="java.io.Serializable">
<bounds x="918" y="56" width="199"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3b327593-ff60-4120-9073-cc9b1a07e577" zentaElement="java.lang.Comparable">
<bounds x="918" y="139" width="199"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f82cf926-dae9-4dd0-8a7d-fd9bfadef813" zentaElement="org.springframework.data.repository.CrudRepository">
<bounds x="918" y="239" width="391"/>
</child>
<child xsi:type="zenta:DiagramObject" id="72a7ff8b-6a02-446a-a240-f52fcd1c8052" zentaElement="java.lang.SuppressWarnings">
<bounds x="77" y="538" width="313"/>
</child>
<child xsi:type="zenta:DiagramObject" id="d1190e54-47fa-4bd0-99b2-ea847a50f381" zentaElement="javax.persistence.Entity">
<bounds x="427" y="538" width="193"/>
</child>
<child xsi:type="zenta:DiagramObject" id="23d38643-41a1-49a1-927d-c76079a8aa9e" zentaElement="javax.persistence.Inheritance">
<bounds x="1248" y="339" width="433"/>
</child>
<child xsi:type="zenta:DiagramObject" id="01a381df-1ff0-4ab3-a1b0-133c5bbdb015" zentaElement="lombok.Getter">
<bounds x="132" y="638" width="193"/>
</child>
<child xsi:type="zenta:DiagramObject" id="15e7072c-9e9d-45d2-a25b-ff44b37642a4" zentaElement="lombok.Setter">
<bounds x="427" y="638" width="193"/>
</child>
<child xsi:type="zenta:DiagramObject" id="902ead3e-5fcc-4778-bb7f-acf85e433ff9" zentaElement="org.springframework.boot.autoconfigure.SpringBootApplication">
<bounds x="1248" y="439" width="433"/>
</child>
<child xsi:type="zenta:DiagramObject" id="9462e69c-c8ce-459a-9b67-4f4bd1a94ade" zentaElement="org.springframework.boot.context.properties.EnableConfigurationProperties">
<bounds x="77" y="738" width="476"/>
</child>
<child xsi:type="zenta:DiagramObject" id="413d406c-4db2-4c1c-a61c-141f9037a7d6" zentaElement="org.springframework.context.annotation.Profile">
<bounds x="918" y="438" width="313"/>
</child>
<child xsi:type="zenta:DiagramObject" id="6279bece-8c1c-451d-9815-9a29e8f05189" zentaElement="org.springframework.security.config.annotation.web.configuration.EnableWebSecurity">
<bounds x="1248" y="539" width="541"/>
</child>
<child xsi:type="zenta:DiagramObject" id="fb675de2-143e-4377-82bd-2c43e4833231" zentaElement="org.springframework.stereotype.Component">
<bounds x="648" y="538" width="313"/>
</child>
<child xsi:type="zenta:DiagramObject" id="a0eb073c-e5d0-4474-9739-fef420e75c5d" zentaElement="org.springframework.stereotype.Repository">
<bounds x="648" y="738" width="313"/>
</child>
<child xsi:type="zenta:DiagramObject" id="c8515202-a205-4844-a1b0-16087ea22026" zentaElement="org.springframework.stereotype.Service">
<bounds x="1248" y="639" width="433"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3d4a3175-2ccb-4688-8a04-3379fe0da367" zentaElement="org.springframework.web.bind.annotation.ControllerAdvice">
<bounds x="648" y="638" width="433"/>
</child>
<child xsi:type="zenta:DiagramObject" id="5b97ce07-15b9-45b9-b47e-33119a50d0e1" zentaElement="org.springframework.web.bind.annotation.ResponseStatus">
<bounds x="1332" y="239" width="505"/>
</child>
<child xsi:type="zenta:DiagramObject" id="4899e353-6c70-40d2-9af5-068d80a4711b" zentaElement="org.springframework.web.bind.annotation.RestController">
<bounds x="1248" y="739" width="433"/>
</child>
<child xsi:type="zenta:DiagramObject" id="89c28f1b-1046-4231-888b-ee4e68ff6528" zentaElement="java.lang.Object">
<bounds x="918" y="339" width="229"/>
</child>
<child xsi:type="zenta:DiagramObject" id="5e08be92-2b79-44e9-a474-d29f41088403" zentaElement="org.springframework.security.config.annotation.web.configuration.EnableWebSecurity">
<bounds x="72" y="828" width="513"/>
</child>
<child xsi:type="zenta:DiagramObject" id="ba67deb7-9d51-4267-81b5-08c2adbdc89a" zentaElement="org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter">
<bounds x="1260" y="56" width="577"/>
</child>
<child xsi:type="zenta:DiagramObject" id="7a723261-1e75-47a6-a240-613779e2e4ab" zentaElement="org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler">
<bounds x="1260" y="139" width="577"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="org.springframework.data.repository.CrudRepository" id="org.springframework.data.repository.CrudRepository" ancestor="interface"/>
<element xsi:type="zenta:BasicObject" name="java.io.Serializable" id="java.io.Serializable" ancestor="interface"/>
<element xsi:type="zenta:BasicObject" name="java.lang.Comparable" id="java.lang.Comparable" ancestor="interface"/>
</folder>
<element xsi:type="zenta:ZentaDiagramModel" name="Data model" id="3fd48345-270a-4ba0-bdbf-1e226230d5d5" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="2359f1ca-d068-4b0a-b0fd-d57e5de4fee1" targetConnections="20be4596-191c-49b7-93f6-4e9a94a51f71" zentaElement="ca6cc0bb-552b-42c4-b943-fe1521bc8ce0">
<bounds x="756" y="204" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="3b4ccf48-c8e5-4001-8d8e-9ca28a4ebdf6" source="2359f1ca-d068-4b0a-b0fd-d57e5de4fee1" target="c633f3a5-f422-44f2-b037-b2122a6454c5" relationship="5420d49f-dc13-4ad9-a26d-00dd9b1162d5"/>
</child>
<child xsi:type="zenta:DiagramObject" id="3ac3c878-bb80-4cb3-b097-93dadd96cda0" targetConnections="b3856026-9245-401d-abd7-cf29505c5a41" zentaElement="14d1161f-cbf4-4ee0-90db-7091e5dcb4f6">
<bounds x="396" y="12" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="560d6e68-d449-48f3-af51-26cd61242ff2" source="3ac3c878-bb80-4cb3-b097-93dadd96cda0" target="144f2452-d750-4779-b950-b4e931f09414" relationship="b60a3d0d-e461-46c9-9732-c22137b3040b"/>
<sourceConnection xsi:type="zenta:Connection" id="0154f305-4613-4dd3-89f2-c4749db8c1e3" source="3ac3c878-bb80-4cb3-b097-93dadd96cda0" target="675272ed-0462-4840-a0c2-1aae4df5c107" relationship="ccc3ede7-87e9-44bd-b476-bda76f5db6e2"/>
<sourceConnection xsi:type="zenta:Connection" id="8eec5d4b-7c0e-4aad-a4f7-28c50e9b0d90" source="3ac3c878-bb80-4cb3-b097-93dadd96cda0" target="f5e4e7dc-b668-45d6-ac30-bd938be0eba7" relationship="fc4970eb-8055-40c9-b17d-168e60cd9aac"/>
</child>
<child xsi:type="zenta:DiagramObject" id="8cf6378c-bc95-4bc6-8b44-e245cd80b3c8" targetConnections="edd2a2fd-0c0c-44db-9014-c36617e84a28 08d915af-b1f2-40cc-8e41-6b904060b417 f3bce672-ff2a-4dc8-98f1-d8d47e882f61" zentaElement="8484ae7f-6edb-4125-bae8-17d80bd4020b">
<bounds x="60" y="132" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="c633f3a5-f422-44f2-b037-b2122a6454c5" targetConnections="3b4ccf48-c8e5-4001-8d8e-9ca28a4ebdf6" zentaElement="56d1cd65-75a1-433d-8192-56fa94fa60e9">
<bounds x="756" y="324" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="144f2452-d750-4779-b950-b4e931f09414" targetConnections="560d6e68-d449-48f3-af51-26cd61242ff2" zentaElement="c8a82dd0-879c-40a6-88ee-0118235e6c2d">
<bounds x="353" y="240" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="0896812f-3a0e-4bda-90b0-7ad3cf8268f2" source="144f2452-d750-4779-b950-b4e931f09414" target="d0f4d889-0571-49fd-ba92-69d9b4b69d2f" relationship="87900509-aa42-498d-9e9b-173ff4bab96a"/>
</child>
<child xsi:type="zenta:DiagramObject" id="675272ed-0462-4840-a0c2-1aae4df5c107" targetConnections="0154f305-4613-4dd3-89f2-c4749db8c1e3" zentaElement="959a09c9-0081-4e81-8587-f24f977e6906">
<bounds x="372" y="156" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e9a835e1-82cf-4a84-bbe4-fc37d0dd5942" targetConnections="3dfd10aa-547d-4b47-bf59-d08c1b09ae13" zentaElement="65357076-fd9e-445e-a416-1db45b277860">
<bounds x="353" y="444" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="d0f4d889-0571-49fd-ba92-69d9b4b69d2f" targetConnections="0896812f-3a0e-4bda-90b0-7ad3cf8268f2" zentaElement="7273e7d4-6fe2-4bd9-ad56-ec4b5d60694f">
<bounds x="353" y="336" width="139"/>
<sourceConnection xsi:type="zenta:Connection" id="3dfd10aa-547d-4b47-bf59-d08c1b09ae13" source="d0f4d889-0571-49fd-ba92-69d9b4b69d2f" target="e9a835e1-82cf-4a84-bbe4-fc37d0dd5942" relationship="7a4e312d-38a6-497e-9bc3-bdbf3aec1e5f"/>
<sourceConnection xsi:type="zenta:Connection" id="f3bce672-ff2a-4dc8-98f1-d8d47e882f61" source="d0f4d889-0571-49fd-ba92-69d9b4b69d2f" target="8cf6378c-bc95-4bc6-8b44-e245cd80b3c8" relationship="b007676f-e652-4feb-a863-b7725af6c149"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b5974022-424e-4e4e-9946-13e1dd718c38" targetConnections="0ff1aa97-4a11-417a-822b-b8ac53dc3075" zentaElement="e6b6e770-45f5-4bfc-889a-0f2f0b63d17b">
<bounds x="924" y="210" width="157"/>
<sourceConnection xsi:type="zenta:Connection" id="f2b60cc5-d543-4252-8b6c-c6d176a61a5e" source="b5974022-424e-4e4e-9946-13e1dd718c38" target="991c8033-8b65-48dc-a8d2-d86473f61515" relationship="ecb8af26-e145-4bd6-bb5a-a5afadbaddf7"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f5e4e7dc-b668-45d6-ac30-bd938be0eba7" targetConnections="fb827452-5131-4782-a483-3eeb5e6cce37 8eec5d4b-7c0e-4aad-a4f7-28c50e9b0d90" zentaElement="11f2d9f5-7580-4e02-803d-34736f4156ba">
<bounds x="60" y="36" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="08d915af-b1f2-40cc-8e41-6b904060b417" source="f5e4e7dc-b668-45d6-ac30-bd938be0eba7" target="8cf6378c-bc95-4bc6-8b44-e245cd80b3c8" relationship="a2101816-2698-499b-9d12-82ead5d6ab75"/>
</child>
<child xsi:type="zenta:DiagramObject" id="cfa84923-0fd1-469b-ba6e-db302515be65" targetConnections="eac0d576-445b-45bd-a4ec-dd915fbba994" zentaElement="1bee4b6f-faae-4066-b733-8fbc90d9e516">
<bounds x="811" y="12" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="b3856026-9245-401d-abd7-cf29505c5a41" source="cfa84923-0fd1-469b-ba6e-db302515be65" target="3ac3c878-bb80-4cb3-b097-93dadd96cda0" relationship="21a8deb5-16f2-4cb7-ac88-c9a5c9e72586"/>
<sourceConnection xsi:type="zenta:Connection" id="fb827452-5131-4782-a483-3eeb5e6cce37" source="cfa84923-0fd1-469b-ba6e-db302515be65" target="f5e4e7dc-b668-45d6-ac30-bd938be0eba7" relationship="064bc8d7-f59e-4345-8f9e-360e0d23c145"/>
<sourceConnection xsi:type="zenta:Connection" id="da9deb54-5124-481c-9e7f-e20d7a401e9b" source="cfa84923-0fd1-469b-ba6e-db302515be65" target="53f524df-e300-4a23-8d8f-1bc1f28ca3e1" relationship="f603cdb8-4a5f-4216-90a0-3ec753889bcd"/>
</child>
<child xsi:type="zenta:DiagramObject" id="991c8033-8b65-48dc-a8d2-d86473f61515" targetConnections="f2b60cc5-d543-4252-8b6c-c6d176a61a5e" zentaElement="ebaf61f3-f935-4c42-a19a-091f2a304fa4">
<bounds x="961" y="312" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="edd2a2fd-0c0c-44db-9014-c36617e84a28" source="991c8033-8b65-48dc-a8d2-d86473f61515" target="8cf6378c-bc95-4bc6-8b44-e245cd80b3c8" relationship="117d4308-a48f-4706-987f-017f3cf59b15"/>
</child>
<child xsi:type="zenta:DiagramObject" id="53f524df-e300-4a23-8d8f-1bc1f28ca3e1" targetConnections="da9deb54-5124-481c-9e7f-e20d7a401e9b 3bdb1bf5-57af-4c83-8abf-38c683e2ddbd" zentaElement="30582e90-f8ea-4033-b89f-710cf0ee59b4">
<bounds x="772" y="102" width="198"/>
<sourceConnection xsi:type="zenta:Connection" id="0ff1aa97-4a11-417a-822b-b8ac53dc3075" source="53f524df-e300-4a23-8d8f-1bc1f28ca3e1" target="b5974022-424e-4e4e-9946-13e1dd718c38" relationship="951c03f4-a161-4587-9fa2-f3914697f2ec"/>
<sourceConnection xsi:type="zenta:Connection" id="20be4596-191c-49b7-93f6-4e9a94a51f71" source="53f524df-e300-4a23-8d8f-1bc1f28ca3e1" target="2359f1ca-d068-4b0a-b0fd-d57e5de4fee1" relationship="e10bcf2c-ebff-48e8-8cf7-a09c75e3b395"/>
</child>
<child xsi:type="zenta:DiagramObject" id="83ff5c6e-9d3c-4dcd-a5fa-cb35113c57bf" zentaElement="7c3929ac-9a1b-4af5-abe5-f3db3886cb36">
<bounds x="562" y="435" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="eac0d576-445b-45bd-a4ec-dd915fbba994" source="83ff5c6e-9d3c-4dcd-a5fa-cb35113c57bf" target="cfa84923-0fd1-469b-ba6e-db302515be65" relationship="d77e2b5c-600d-45e5-846b-eb8e4300f224"/>
<sourceConnection xsi:type="zenta:Connection" id="3bdb1bf5-57af-4c83-8abf-38c683e2ddbd" source="83ff5c6e-9d3c-4dcd-a5fa-cb35113c57bf" target="53f524df-e300-4a23-8d8f-1bc1f28ca3e1" relationship="f2e1bd00-c84b-44e1-9fe1-1f811bd557c4"/>
</child>
</element>
<element xsi:type="zenta:BasicRelationship" id="fc4970eb-8055-40c9-b17d-168e60cd9aac" ancestor="basicrelation" source="14d1161f-cbf4-4ee0-90db-7091e5dcb4f6" target="11f2d9f5-7580-4e02-803d-34736f4156ba"/>
<element xsi:type="zenta:BasicRelationship" id="b007676f-e652-4feb-a863-b7725af6c149" ancestor="basicrelation" source="7273e7d4-6fe2-4bd9-ad56-ec4b5d60694f" target="8484ae7f-6edb-4125-bae8-17d80bd4020b"/>
<element xsi:type="zenta:BasicObject" name="VoteResultForAssurance" id="30582e90-f8ea-4033-b89f-710cf0ee59b4" ancestor="object"/>
<element xsi:type="zenta:BasicRelationship" id="f603cdb8-4a5f-4216-90a0-3ec753889bcd" ancestor="basicrelation" source="1bee4b6f-faae-4066-b733-8fbc90d9e516" target="30582e90-f8ea-4033-b89f-710cf0ee59b4"/>
<element xsi:type="zenta:BasicRelationship" id="951c03f4-a161-4587-9fa2-f3914697f2ec" ancestor="basicrelation" source="30582e90-f8ea-4033-b89f-710cf0ee59b4" target="e6b6e770-45f5-4bfc-889a-0f2f0b63d17b"/>
<element xsi:type="zenta:BasicRelationship" id="e10bcf2c-ebff-48e8-8cf7-a09c75e3b395" ancestor="basicrelation" source="30582e90-f8ea-4033-b89f-710cf0ee59b4" target="ca6cc0bb-552b-42c4-b943-fe1521bc8ce0"/>
<element xsi:type="zenta:BasicRelationship" id="d77e2b5c-600d-45e5-846b-eb8e4300f224" ancestor="522e042f-d5ea-43a1-ad04-6e42970205a6" source="7c3929ac-9a1b-4af5-abe5-f3db3886cb36" target="1bee4b6f-faae-4066-b733-8fbc90d9e516"/>
<element xsi:type="zenta:BasicRelationship" id="f2e1bd00-c84b-44e1-9fe1-1f811bd557c4" ancestor="522e042f-d5ea-43a1-ad04-6e42970205a6" source="7c3929ac-9a1b-4af5-abe5-f3db3886cb36" target="30582e90-f8ea-4033-b89f-710cf0ee59b4"/>
</folder>
</folder>
<folder name="1. Why" id="8eaaae16-789a-421e-a1f4-2878990d9ac2">
<folder name="1. Policies" id="11c33002-b7e1-4814-8fc1-77735f861741">
<element xsi:type="zenta:ZentaDiagramModel" name="Policies" id="5c7880b3-1906-4cba-87bf-0d102d2d160e" connectionRouterType="1">
<child xsi:type="zenta:DiagramObject" id="b0992a4c-71e1-476f-a954-390a3bb2ee18" zentaElement="2b9da490-43b2-48d1-82b2-7e559fb217c9">
<bounds x="384" y="-72" width="225"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e5fb4801-6cc0-4f94-ab3e-862984f66721" zentaElement="a0fd8059-d3cd-4ce5-bb05-ab4a0e8074d5">
<bounds x="636" y="-72" width="221"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f95fc74b-af58-424c-84d3-9102baad6abb" zentaElement="dc23a645-38b7-4552-8035-31b1be8021cc">
<bounds x="78" y="12" width="279"/>
</child>
<child xsi:type="zenta:DiagramObject" id="457f8f6f-f877-439d-860f-f607b572ed43" zentaElement="2fe452ed-7429-4524-ac63-f15711543b60">
<bounds x="372" y="12" width="212"/>
</child>
<child xsi:type="zenta:DiagramObject" id="aab49cc8-1eb7-40a8-aa50-66f6ee2ccd86" zentaElement="0c4fd14d-67c2-4479-8f50-70f24009bc9b">
<bounds x="608" y="12" width="234"/>
</child>
<child xsi:type="zenta:DiagramObject" id="045e02f2-45fc-438e-8559-25d52ad64e46" zentaElement="62a8ca26-9404-4753-bfd3-abbbe5f8592c">
<bounds x="71" y="84" width="362"/>
</child>
<child xsi:type="zenta:DiagramObject" id="7708a5a4-b199-45c3-ae75-78a0ff07a609" zentaElement="caa1450a-091a-4989-8627-98077a4196a4">
<bounds x="492" y="84" width="337"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f7d5c3c9-471b-45df-8a1e-4de8172f6182" zentaElement="bc96ca23-643a-4d3f-b1df-7c697eb444ce">
<bounds x="71" y="-72" width="154"/>
</child>
<child xsi:type="zenta:DiagramObject" id="327971c8-f3d0-4979-9e0d-cf86255c8e2e" zentaElement="4a96dc05-56d0-4528-b49b-31e3782da526">
<bounds x="240" y="-72" width="-1" height="-1"/>
</child>
<child xsi:type="zenta:DiagramObject" id="ad097a27-7028-4ebe-bb0b-20e77074954c" zentaElement="9bdc5f81-1bbb-430a-87a8-35e373c17861">
<bounds x="516" y="169" width="289"/>
</child>
<child xsi:type="zenta:DiagramObject" id="361d047d-4538-429f-808a-e82bf2caa966" zentaElement="bc96ca23-643a-4d3f-b1df-7c697eb444ce">
<bounds x="420" y="360" width="203"/>
</child>
<child xsi:type="zenta:DiagramObject" id="cdcf86da-5d7f-4872-b0bd-d5c755a37e07" zentaElement="2b9da490-43b2-48d1-82b2-7e559fb217c9">
<bounds x="96" y="169" width="225"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bcf2470a-c07d-4f66-bd93-b107132132b2" zentaElement="a0fd8059-d3cd-4ce5-bb05-ab4a0e8074d5">
<bounds x="336" y="240" width="229"/>
</child>
<child xsi:type="zenta:DiagramObject" id="ea788f6e-b0a6-4c99-b9ed-b3479d52473f" zentaElement="4a96dc05-56d0-4528-b49b-31e3782da526">
<bounds x="119" y="324" width="197"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="The same vote can be tallied for different ADA assurances and "no assurance" group." id="caa1450a-091a-4989-8627-98077a4196a4" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="The engine can be used by ADA users and content providers to run a vote, and ADA users to participate in it." id="62a8ca26-9404-4753-bfd3-abbbe5f8592c" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="Supports Debian General Resolution Procedure" id="0c4fd14d-67c2-4479-8f50-70f24009bc9b" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="Votes are tallied using Shulze method" id="2fe452ed-7429-4524-ac63-f15711543b60" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="Votes can be conducted on smaller groups than what assurances define." id="dc23a645-38b7-4552-8035-31b1be8021cc" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="Uses ADA authentication and assurances for access control" id="a0fd8059-d3cd-4ce5-bb05-ab4a0e8074d5" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="The voting engine is the core part of the Voting product" id="2b9da490-43b2-48d1-82b2-7e559fb217c9" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="Voter privacy is ensured" id="4a96dc05-56d0-4528-b49b-31e3782da526" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a"/>
<element xsi:type="zenta:BasicObject" name="The system is end-to-end verifiable" id="bc96ca23-643a-4d3f-b1df-7c697eb444ce" ancestor="e1d3f9d2-3886-41be-9150-a18a2e5a649a">
<documentation>– Individual verifiability: a voter can check that her own ballot is included in the
election’s bulletin board.
– Universal verifiability: anyone can check that the election outcome corresponds to
the ballots published on the bulletin board.
https://bensmyth.com/files/Smyth10-definition-verifiability.LNCS.pdf</documentation>
</element>
<element xsi:type="zenta:BasicObject" name="Voting is unavailable or insecure because the environment does not provide the necessary services" id="9bdc5f81-1bbb-430a-87a8-35e373c17861" ancestor="93f42372-3328-43cb-8be3-f952a10169fd"/>
</folder>
<folder name="2. Objectives" id="6c9fd1b4-8f45-499d-8949-b24015751dce">
<folder name="01. End-to-end verifiability" id="cc0e3e4f-4806-4e5e-b7d2-aeea3d061bdf">
<element xsi:type="zenta:BasicObject" name="Anyone vith access to the vote results can check that each vote in it was cast by a registered voter and there is at most one vote per voter. (Eligibility Verifiability)" id="146e9362-d28b-4737-823e-e178d00d3031" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:BasicObject" name="Anyone eligible to vote can check that the vote results corresponds to the ballots published. (Universal Verifiability)" id="9fb99f51-9131-4ddd-bc4d-26119ecb2494" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:BasicObject" name="A voter can check that her own ballot is included in the vote’s tally output (individual verifiability), and act upon problems." id="be7058bc-2b79-43a6-8e10-a08f0e63b8d7" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:BasicObject" name="Eligibility data can be extracted from ADA for a vote in an anonymous manner." id="e39f141c-c517-4440-8c27-ab6abdffb406" ancestor="08a76696-f900-4576-89a9-77793d9a1ec0"/>
<element xsi:type="zenta:BasicObject" name="The system and all of its dependencies are Open Source" id="c57d1add-01fa-442f-972c-4ef3433b6445" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:ZentaDiagramModel" name="End-to-end verifiability" id="c239e561-4b98-4371-abc2-fd810861bc5e">
<child xsi:type="zenta:DiagramObject" id="e87ec492-6efd-47b3-8d79-6730c677b708" zentaElement="bc96ca23-643a-4d3f-b1df-7c697eb444ce">
<bounds x="370" y="192" height="73"/>
<sourceConnection xsi:type="zenta:Connection" id="1122cfdf-0f02-4a89-8aeb-d91e91bb2973" source="e87ec492-6efd-47b3-8d79-6730c677b708" target="c6d46144-593f-45a2-b792-f018d3e2fecd" relationship="6ed059f6-4e77-4c2d-bdf8-739a10c50101"/>
<sourceConnection xsi:type="zenta:Connection" id="125ad8f0-cdef-4e73-9003-fac116b0908e" source="e87ec492-6efd-47b3-8d79-6730c677b708" target="6b757fc0-8362-4b36-9cb3-31bded5f4b55" relationship="e885bc18-6527-4642-85e1-d2371ecbdb54"/>
<sourceConnection xsi:type="zenta:Connection" id="995310a5-6253-499a-a457-d5353fc98c6f" source="e87ec492-6efd-47b3-8d79-6730c677b708" target="f3579d67-5af3-4638-8f6b-962b9e91d647" relationship="51da5548-de12-4111-9181-1f1ac7801fa1"/>
<sourceConnection xsi:type="zenta:Connection" id="9fd25a38-104d-4a90-a0c5-14c661db7cf5" source="e87ec492-6efd-47b3-8d79-6730c677b708" target="e599e6a7-1d97-4d18-9f45-f62c46a05696" relationship="37232786-31e1-4c21-9fad-4a8feccef21f"/>
<sourceConnection xsi:type="zenta:Connection" id="deebdfa4-08a5-4d18-a186-4dbb1f9c447b" source="e87ec492-6efd-47b3-8d79-6730c677b708" target="bc065100-9650-4a31-a262-1d099a15f72d" relationship="3c70660b-c5d1-4ca5-ae24-3313ca46dcf0"/>
<sourceConnection xsi:type="zenta:Connection" id="179c0486-064c-4736-b442-ca1183f5561c" source="e87ec492-6efd-47b3-8d79-6730c677b708" target="52fe4da4-202b-4aa2-accb-d7a288a4a6ce" relationship="f50ea791-bc0d-44a9-8579-0fadf1dc1e74"/>
</child>
<child xsi:type="zenta:DiagramObject" id="c6d46144-593f-45a2-b792-f018d3e2fecd" targetConnections="1122cfdf-0f02-4a89-8aeb-d91e91bb2973" zentaElement="be7058bc-2b79-43a6-8e10-a08f0e63b8d7">
<bounds x="41" y="132" width="289" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="6b757fc0-8362-4b36-9cb3-31bded5f4b55" targetConnections="125ad8f0-cdef-4e73-9003-fac116b0908e" zentaElement="9fb99f51-9131-4ddd-bc4d-26119ecb2494">
<bounds x="213" y="36" width="433" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="f3579d67-5af3-4638-8f6b-962b9e91d647" targetConnections="995310a5-6253-499a-a457-d5353fc98c6f" zentaElement="146e9362-d28b-4737-823e-e178d00d3031">
<bounds x="528" y="132" width="414" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="e599e6a7-1d97-4d18-9f45-f62c46a05696" targetConnections="9fd25a38-104d-4a90-a0c5-14c661db7cf5" zentaElement="e39f141c-c517-4440-8c27-ab6abdffb406">
<bounds x="600" y="228" width="258" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="bc065100-9650-4a31-a262-1d099a15f72d" targetConnections="deebdfa4-08a5-4d18-a186-4dbb1f9c447b" zentaElement="c57d1add-01fa-442f-972c-4ef3433b6445">
<bounds x="72" y="300" width="258" height="73"/>
</child>
<child xsi:type="zenta:DiagramObject" id="52fe4da4-202b-4aa2-accb-d7a288a4a6ce" targetConnections="179c0486-064c-4736-b442-ca1183f5561c" zentaElement="723b0833-86e4-48c5-8de8-df95ea90c6e0">
<bounds x="370" y="312" width="315"/>
</child>
</element>
<element xsi:type="zenta:BasicObject" name="The system defends itself from an attacker of enhanced-basic attack potential" id="723b0833-86e4-48c5-8de8-df95ea90c6e0" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
</folder>
<folder name="02. Voter privacy" id="9c1a44ab-e007-4b18-a05f-327d6d47b56d">
<element xsi:type="zenta:BasicObject" name="No data in the vote result can be used to track down a vote cast to the individual." id="82bfc6ad-29f3-4f86-b390-0a95d054f3ad" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:ZentaDiagramModel" name="Voter Privacy" id="a2bac0be-6005-4e62-b1b4-3f6123094366">
<child xsi:type="zenta:DiagramObject" id="5ddd68e8-3d6b-4404-9f78-1860c353ad73" zentaElement="4a96dc05-56d0-4528-b49b-31e3782da526">
<bounds x="360" y="144" width="-1" height="-1"/>
<sourceConnection xsi:type="zenta:Connection" id="1334b6a0-4f4e-4b26-b28a-05fc8faa4efc" source="5ddd68e8-3d6b-4404-9f78-1860c353ad73" target="2893288a-1283-4e4b-8c19-864b00071d02" relationship="c2db3ebe-3eef-4fa4-988a-5a440fb59393"/>
<sourceConnection xsi:type="zenta:Connection" id="fc6c93eb-d977-476d-8a8e-5486c15b9608" source="5ddd68e8-3d6b-4404-9f78-1860c353ad73" target="b2d63dc0-1bec-4289-b239-ac6c28387473" relationship="123afa48-e2fe-427d-9bb6-70cb72e3eb50"/>
<sourceConnection xsi:type="zenta:Connection" id="e2842a06-dd2e-4690-8acd-e1aec093c451" source="5ddd68e8-3d6b-4404-9f78-1860c353ad73" target="cb02f120-a1cb-4380-ae8f-a07a970c460b" relationship="f0c16994-4d78-4f04-883f-517f0a864a02"/>
</child>
<child xsi:type="zenta:DiagramObject" id="2893288a-1283-4e4b-8c19-864b00071d02" targetConnections="1334b6a0-4f4e-4b26-b28a-05fc8faa4efc" zentaElement="82bfc6ad-29f3-4f86-b390-0a95d054f3ad">
<bounds x="72" y="270" width="313"/>
</child>
<child xsi:type="zenta:DiagramObject" id="b2d63dc0-1bec-4289-b239-ac6c28387473" targetConnections="fc6c93eb-d977-476d-8a8e-5486c15b9608" zentaElement="e39f141c-c517-4440-8c27-ab6abdffb406">
<bounds x="528" y="270" width="347"/>
</child>
<child xsi:type="zenta:DiagramObject" id="cb02f120-a1cb-4380-ae8f-a07a970c460b" targetConnections="e2842a06-dd2e-4690-8acd-e1aec093c451" zentaElement="723b0833-86e4-48c5-8de8-df95ea90c6e0">
<bounds x="288" y="360" width="299"/>
</child>
</element>
</folder>
<folder name="03. Scope of the engine" id="8e945d0c-bc25-4c47-bb25-16b40cf2600a">
<element xsi:type="zenta:BasicObject" name="If a vote is conducted on groups defined by assurances, all security functions beyond those provided by ADA should be implemented in the voting engine" id="e51e4b6b-ed88-450c-bb78-93c35e91b4c2" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:BasicObject" name="There is a static UI as part of the Voting product" id="10d2f02b-f1c7-43e1-91a1-98c81f5b40b5" ancestor="08a76696-f900-4576-89a9-77793d9a1ec0"/>
<element xsi:type="zenta:BasicObject" name="The voting engine can be used together with only ADA and a static UI running in the user's browser." id="a66f8fc0-8fef-4a1c-9ee6-9b1fb366ee4d" ancestor="9e9b9272-dfb5-46f0-b22e-9ff53f40c4ab"/>
<element xsi:type="zenta:ZentaDiagramModel" name="Scope" id="41341259-67f6-40ca-aa39-e5d47eedcdcf">
<child xsi:type="zenta:DiagramObject" id="9c98042c-71b2-46e8-b5e0-ce057db69556" zentaElement="2b9da490-43b2-48d1-82b2-7e559fb217c9">
<bounds x="408" y="144" width="287"/>
<sourceConnection xsi:type="zenta:Connection" id="2a8caf3c-0eba-4c6f-a4e4-b6647f437098" source="9c98042c-71b2-46e8-b5e0-ce057db69556" target="df55a6d8-1cff-4f02-ad6e-0b1d920f4803" relationship="51a708f0-1986-4cde-ae4c-a887a3ae1872"/>
<sourceConnection xsi:type="zenta:Connection" id="84d9e736-cf3d-465d-8711-331cf283ec75" source="9c98042c-71b2-46e8-b5e0-ce057db69556" target="64d8a07e-109b-41e0-b91e-7d4d3c47b406" relationship="92d41e5c-9044-4f10-8f76-69b402509891"/>
<sourceConnection xsi:type="zenta:Connection" id="01aa6e1a-b846-4a4b-960e-0dcc934726eb" source="9c98042c-71b2-46e8-b5e0-ce057db69556" target="d118fa69-91ee-4cc4-9fc0-ca30705346d1" relationship="42d531e0-aba6-4133-ab77-d80edc4c8b0e"/>
</child>
<child xsi:type="zenta:DiagramObject" id="df55a6d8-1cff-4f02-ad6e-0b1d920f4803" targetConnections="2a8caf3c-0eba-4c6f-a4e4-b6647f437098" zentaElement="e51e4b6b-ed88-450c-bb78-93c35e91b4c2">
<bounds x="36" y="24" width="469"/>
</child>
<child xsi:type="zenta:DiagramObject" id="64d8a07e-109b-41e0-b91e-7d4d3c47b406" targetConnections="84d9e736-cf3d-465d-8711-331cf283ec75" zentaElement="a66f8fc0-8fef-4a1c-9ee6-9b1fb366ee4d">
<bounds x="612" y="24" width="397"/>
</child>
<child xsi:type="zenta:DiagramObject" id="d118fa69-91ee-4cc4-9fc0-ca30705346d1" targetConnections="01aa6e1a-b846-4a4b-960e-0dcc934726eb" zentaElement="10d2f02b-f1c7-43e1-91a1-98c81f5b40b5">