forked from BSData/dystopianwars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImperium.cat
11573 lines (11572 loc) · 931 KB
/
Imperium.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="5037-a8ca-0033-3edc" name="Imperium 3.02" revision="4" battleScribeVersion="2.03" authorName="Riccardo Sipone" authorContact="[email protected]" library="false" gameSystemId="1242-c30b-419f-8229" gameSystemRevision="6" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<comment>1.04.01: Initial publication ORBAT v1.04a
1.07.03: updated to the the ORBAT v1.07c
3.02.00: updated to the the ORBAT v3.02
3.02.01: updated to the the ORBAT v3.02, correction minor </comment>
<readme>Datafile history:
1.04.01: Initial publication ORBAT v1.04a
1.07.03: updated to the the ORBAT v1.07c
3.02.00: updated to the the ORBAT v3.02
3.02.01: updated to the the ORBAT v3.02, correction minor </readme>
<categoryEntries>
<categoryEntry id="138b-84c8-2ae2-129f" name="Elector Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="5327-366a-b983-42f4" name="Kaiser Pattern" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="ebd7-627c-0866-81cb" name="Ragnarok Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="88a3-271d-956a-66f5" name="Heidelberg Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="160f-d22f-4f0c-ba94" name="Tempelhof Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="a834-8903-6a0b-928b" name="Ice Maiden Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="71dd-eaaf-cd09-13d9" name="Arminius Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="8332-4722-194c-f3f3" name="Augustus Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="c6e2-6204-a580-38c1" name="Blucher Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="e814-bd03-a791-b230" name="Konrad Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="75ad-5a85-ed63-1645" name="Sigimer Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="e6ef-ae36-6c03-3de8" name="Freya Array" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="c5d5-d170-4f1a-2639" name="Volsung Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="c74b-e9a1-ee6b-5876" name="Raider" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="0744-b06e-e9ce-2e54" name="Toten Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="c6ba-ad8a-c177-066a" name="Schaumburg Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="47ab-acde-5ba7-50e5" name="Flak Cruiser" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="3849-4733-d1de-9e88" name="Reiter Class" hidden="false"/>
<categoryEntry id="50a5-de81-9769-6418" name="Reaver" hidden="false"/>
<categoryEntry id="26cf-5a40-2fc4-bedd" name="Odin Class" hidden="false"/>
<categoryEntry id="f49a-fd22-f5f4-98ba" name="Vitruvian Colossus" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="deb5-bbe7-6b77-def9" name="Metzger Class" hidden="false"/>
<categoryEntry id="729b-3dab-b703-cf07" name="Hochmeister Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="bfa5-db13-7b70-988a" name="Phosphor Shells" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="e081-d713-1625-d32f" name="Dreadnought Super-Carrier" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="6174-5a2e-b1c3-2a49" name="Costal bombard" hidden="false"/>
<categoryEntry id="fdb2-f15b-0d75-9434" name="Holtzendorff Loadout" hidden="false"/>
<categoryEntry id="27cb-30e8-6501-11c5" name="Gun Battery" hidden="false"/>
<categoryEntry id="79fb-91eb-12b8-4dcc" name="Rocket Battery" hidden="false"/>
<categoryEntry id="b0b9-ca94-48ef-e72b" name="Hoth Class" hidden="false"/>
<categoryEntry id="58f8-39a1-6a66-8f18" name="Ferdinand Class" hidden="false"/>
<categoryEntry id="a19b-6ea3-2083-0e3d" name="Konig Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="160a-fe4c-7f17-42ee" name="Blucher Class Full" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="c9c2-575f-feb5-3aea" name="Hochmeister Class Full" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="3be8-1dba-ecea-3159" name="Odin Class Full" hidden="false"/>
<categoryEntry id="7364-8909-b4cd-2915" name="Lightning Raid" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="884b-1003-e9da-e4d4" name="Valkyrie Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="381f-fee3-786c-1414" name="Imperium" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="e382-41fb-5f68-ae0a" name="Prussian" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="65fc-5b90-c091-9df7" name="Scandinavian" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="47a7-7ba3-45db-b846" name="Teutonic" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="ee36-4047-83f2-7b11" name="Bavarian" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="848a-0b07-b832-4251" name="Nuremberg Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="bfeb-4ec4-4441-76a1" name="Munich Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="3ed8-a75c-4dff-db4b" name="Kriegsturm Class" hidden="false"/>
<categoryEntry id="d52f-880d-a11c-d515" name="Jaeger Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="3ff2-e6cc-094f-2d13" name="Fenrir Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="4015-893e-a481-d96e" name="Croatian" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="dcf7-1399-f4b1-c12a" name="Zrin Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="5326-83c2-f984-9187" name="Varazdin Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="bbf0-2e29-e5bb-53b7" name="Malus Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="8770-c046-1af4-a145" name="Loki Class" hidden="false"/>
<categoryEntry id="d555-509b-cb82-90c3" name="Gungnir Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="3944-157a-5484-3183" name="Eltz Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="a707-9c45-3a22-df48" name="Jotunn Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="f15b-ccc5-5757-578a" name="Modular configuration" hidden="false"/>
<categoryEntry id="24e3-6c84-6a9e-2a13" name="Zeppelin Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="4d4a-fcc7-bdb4-57af" name="Valhalla Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="f396-e777-2eee-9506" name="Stark Imperium Class" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
<categoryEntry id="2f37-962d-c21d-b8c4" name="Pflicht Aerial Escorts" publicationId="33cf-b4a6-bff0-0d70" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="a6b7-a5fe-fa1e-484c" name="Bavarian Aerial Battlefleet" publicationId="33cf-b4a6-bff0-0d70" hidden="false">
<categoryLinks>
<categoryLink id="bc76-74c4-23f8-7938" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ec6-3851-e77f-e6ab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0180-0ca0-1344-d030" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="bc76-74c4-23f8-7938" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ec6-3851-e77f-e6ab" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0180-0ca0-1344-d030" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f57f-1557-9582-eaa1" name="Munich Class" hidden="false" targetId="bfeb-4ec4-4441-76a1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d85b-7f31-a812-e050" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6704-d0e9-27b0-1490" name="Nuremberg Class" hidden="false" targetId="848a-0b07-b832-4251" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7616-c566-d2b6-e63a" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="1c85-4cd6-106f-581e" name="Imperium Faction Battlefleet" hidden="false">
<categoryLinks>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5002-7c87-a82b-87aa" name="Arminius Class" hidden="false" targetId="71dd-eaaf-cd09-13d9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49b4-56c4-c517-cfd5" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f2dd-ec44-1efa-31b3" name="Augustus Class" hidden="false" targetId="8332-4722-194c-f3f3" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac70-c7bc-c3fe-2775" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="439c-f974-76a0-f5fd" name="Blucher Class" hidden="false" targetId="c6e2-6204-a580-38c1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bde8-1b6d-1df2-b81f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="779f-030a-9aa3-cd0c" name="Eltz Class" hidden="false" targetId="3944-157a-5484-3183" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="775e-4d3b-2b8c-2a89" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c5ba-f8eb-6647-800d" name="Ferdinand Class" hidden="false" targetId="58f8-39a1-6a66-8f18" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3160-46db-ff03-138b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3e1f-7e39-622a-8026" name="Gungnir Class" hidden="false" targetId="d555-509b-cb82-90c3" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c391-8415-7503-54c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0e10-302a-8dd3-c2a6" name="Heidelberg Class" hidden="false" targetId="88a3-271d-956a-66f5" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55a5-44e1-f5da-9a91" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6965-3647-3a1d-02a5" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f60a-3040-682d-35ff" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="19d9-1715-c540-8792" name="Hoth Class" hidden="false" targetId="b0b9-ca94-48ef-e72b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc02-17ec-0981-7f55" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9120-a106-ff94-0e09" name="Jotunn Class" hidden="false" targetId="a707-9c45-3a22-df48" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81a3-5c99-e14b-5343" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d878-f169-78e0-c628" name="Konrad Class" hidden="false" targetId="e814-bd03-a791-b230" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b94b-beb0-376e-5193" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2553-b8fc-1973-644c" name="Loki Class" hidden="false" targetId="8770-c046-1af4-a145" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="006b-2d34-d656-374c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="de87-9095-dbf1-d0e8" name="Malus Class" hidden="false" targetId="bbf0-2e29-e5bb-53b7" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f1ed-21d1-aaa0-57e9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c11a-c272-7d38-8969" name="Metzger Class" hidden="false" targetId="deb5-bbe7-6b77-def9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e779-a4d2-4371-47c6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8028-f001-9f4e-de6d" name="Odin Class" hidden="false" targetId="26cf-5a40-2fc4-bedd" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6531-0542-79fc-6237" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="fe99-8f36-a655-7cef" name="Reiter Class" hidden="false" targetId="3849-4733-d1de-9e88" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="407b-86fc-793e-3a9b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a9b7-394d-1400-8fc0" name="Schaumburg Class" hidden="false" targetId="c6ba-ad8a-c177-066a" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d2d-14bf-de59-7e36" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b6c2-b03f-959d-910f" name="Sigimer Class" hidden="false" targetId="75ad-5a85-ed63-1645" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cffc-cfe5-ca28-5a0b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4038-458c-354c-397d" name="Toten Class" hidden="false" targetId="0744-b06e-e9ce-2e54" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="48ec-110e-923b-5ce1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-186f-eb2a-4480" name="Varazdin Class" hidden="false" targetId="5326-83c2-f984-9187" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a94-b8dc-a30a-e1c7" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="346f-0c99-9afc-9531" name="Volsung Class" hidden="false" targetId="c5d5-d170-4f1a-2639" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72b1-c5f1-2a1e-567e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b1ee-8283-68e8-cc33" name="Zrin Class" hidden="false" targetId="dcf7-1399-f4b1-c12a" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d70-13c4-732e-9ded" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="44cc-6c78-721e-ce08" name="Fenrir Class" hidden="false" targetId="3ff2-e6cc-094f-2d13" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96b7-1ffd-1996-88a0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="88ee-c2ba-4407-755f" name="Jaeger Class" hidden="false" targetId="d52f-880d-a11c-d515" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="733a-544c-706a-60e4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8acb-cd56-218d-5725" name="Kriegsturm Class" hidden="false" targetId="3ed8-a75c-4dff-db4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ff5-b245-bbdc-c536" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d46d-870c-6ab1-45b4" name="Munich Class" hidden="false" targetId="bfeb-4ec4-4441-76a1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f30a-00a3-e921-7b9d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="524d-63db-cccd-08e8" name="Nuremberg Class" hidden="false" targetId="848a-0b07-b832-4251" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2787-03cb-6bbf-038d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6d58-99ee-bc20-4950" name="Valkyrie Class" hidden="false" targetId="884b-1003-e9da-e4d4" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ecc2-3c59-a93e-c4d3" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="be40-ff53-14f5-05b4" name="Prussian Aerial Battlefleet" hidden="false">
<categoryLinks>
<categoryLink id="4d58-a4fe-951b-90c3" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bba1-45c1-0971-3859" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5bb-47f5-4440-4825" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="511f-527a-50b7-b0a1" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ecda-f24c-c566-0472" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ad8-7409-4639-aa07" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c925-9f38-1201-88b9" name="Jaeger Class" hidden="false" targetId="d52f-880d-a11c-d515" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8599-1597-3f5b-8534" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b67c-fd54-baa3-a2c3" name="Kriegsturm Class" hidden="false" targetId="3ed8-a75c-4dff-db4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe52-a939-10b2-621b" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="d554-191b-783b-f2c9" name="Prussian Iron Skies Battlefleet" hidden="false">
<categoryLinks>
<categoryLink id="52ea-51ae-0945-4aea" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a77c-a82a-2c5b-e2ae" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="02e6-c7d4-13b9-cb41" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a18a-a237-d91e-48da" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe3b-1a4e-37bd-0c44" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd7b-c9c7-dff0-a670" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="04a3-668c-406d-0d78" name="Jaeger Class" hidden="false" targetId="d52f-880d-a11c-d515" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6533-142a-ece9-d3c6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="eb54-f72b-2c29-59f2" name="Kriegsturm Class" hidden="false" targetId="3ed8-a75c-4dff-db4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8dea-b037-4ff7-0251" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="d456-5b55-0389-0023" name="Prussian Frontline Battlefleet" publicationId="33cf-b4a6-bff0-0d70" hidden="false">
<infoLinks>
<infoLink id="49d5-2136-1aa3-3a39" name="Valorous Conduct" hidden="false" targetId="0d1b-0810-3b49-e25e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a059-c905-955b-d589" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1398-efc7-2715-2834" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68e3-52e7-d52a-4521" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="dac5-5740-e114-6f80" name="Arminius Class" hidden="false" targetId="71dd-eaaf-cd09-13d9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b408-d7fb-f53f-c68b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="eb3b-a140-fa77-420c" name="Augustus Class" hidden="false" targetId="8332-4722-194c-f3f3" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f90-e3bf-c2f7-de32" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d1a2-5841-ca35-716f" name="Blucher Class" hidden="false" targetId="c6e2-6204-a580-38c1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8a07-4d06-fd3a-c346" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e61d-d520-caa9-06f1" name="Heidelberg Class" hidden="false" targetId="88a3-271d-956a-66f5" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d1ec-6999-3a02-67b3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="938a-1d9a-8c17-058a" name="Konrad Class" hidden="false" targetId="e814-bd03-a791-b230" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e854-3e51-7aef-7166" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d286-6621-aee2-71e5" name="Reiter Class" hidden="false" targetId="3849-4733-d1de-9e88" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0648-9a10-3e4a-9297" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="46ca-8568-de5e-791a" name="Schaumburg Class" hidden="false" targetId="c6ba-ad8a-c177-066a" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20a2-bd53-2af4-ecd6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e2b7-2ede-9e9a-1d8b" name="Sigimer Class" hidden="false" targetId="75ad-5a85-ed63-1645" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f7b8-80c3-78d5-bf69" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1466-3181-7750-5194" name="Toten Class" hidden="false" targetId="0744-b06e-e9ce-2e54" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5257-8457-bea3-8e09" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8e5d-f1ab-6f1e-2da0" name="Volsung Class" hidden="false" targetId="c5d5-d170-4f1a-2639" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cddd-778d-5b03-5f4e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4da7-e5d4-11eb-e87d" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c845-a115-05b1-fa3e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="08da-7bb8-0222-46a1" name="Malus Class" hidden="false" targetId="bbf0-2e29-e5bb-53b7" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="906a-d415-8b57-cca3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9fff-4e04-aa82-dd10" name="Metzger Class" hidden="false" targetId="deb5-bbe7-6b77-def9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff3e-27d4-f6f8-8312" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="b3fc-2011-ba34-2e15" name="Prussian Support Battlefleets" hidden="false">
<categoryLinks>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4c44-efa8-254d-6c0d" name="Fleet Bonus" hidden="false" targetId="2823-5c19-a89c-6839" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3df0-ab0e-45b1-cb1b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3ee1-68e6-b93e-1d0f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9590-ec67-f96a-40f6" name="Arminius Class" hidden="false" targetId="71dd-eaaf-cd09-13d9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e035-15af-d18b-fa2b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1a8d-b172-9f53-1c06" name="Augustus Class" hidden="false" targetId="8332-4722-194c-f3f3" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e8c-082e-3052-5da6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="16c0-148d-a26e-6970" name="Blucher Class" hidden="false" targetId="c6e2-6204-a580-38c1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99b4-be24-a553-7a60" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="50e2-9f11-55e3-7d5b" name="Heidelberg Class" hidden="false" targetId="88a3-271d-956a-66f5" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f51-2b30-c3cc-b948" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a07c-c6c5-2390-5f48" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="42d9-7b5d-c205-cca5" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="43ce-dc95-14bf-6bbc" name="Konrad Class" hidden="false" targetId="e814-bd03-a791-b230" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e20e-ef9a-c41a-96dd" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9096-a7ec-8331-61d6" name="Malus Class" hidden="false" targetId="bbf0-2e29-e5bb-53b7" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed3b-ae60-a716-db1c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1ace-94cf-1434-ee46" name="Metzger Class" hidden="false" targetId="deb5-bbe7-6b77-def9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5f1-7db1-9e9c-3d5d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f5cd-4b01-eaa3-cf3c" name="Reiter Class" hidden="false" targetId="3849-4733-d1de-9e88" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6446-0feb-36ae-859c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="254f-3cc7-f004-bf35" name="Schaumburg Class" hidden="false" targetId="c6ba-ad8a-c177-066a" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c7c8-8912-325b-1027" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ad51-3c1f-302d-6eca" name="Sigimer Class" hidden="false" targetId="75ad-5a85-ed63-1645" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="669f-2692-4f5d-d35c" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="f0ca-6d78-860e-f7db" name="Toten Class" hidden="false" targetId="0744-b06e-e9ce-2e54" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c29a-7fa4-2df2-6955" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="38a8-ff3f-4399-5ec7" name="Volsung Class" hidden="false" targetId="c5d5-d170-4f1a-2639" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4920-a8cb-7b7d-1a38" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="b917-d93e-967e-dbfa" name="Teutonic Advanced Battlefleet" publicationId="33cf-b4a6-bff0-0d70" hidden="false">
<infoLinks>
<infoLink id="8605-ef5e-d353-056c" name="Command Override" hidden="false" targetId="78c8-6a85-daa7-3625" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="dc04-f1b1-2ccb-1b26" name="Teutonic Colossus Battlefleet" hidden="false">
<infoLinks>
<infoLink id="65c2-5288-d7d7-e876" name="Elite Crew (Fleet Bonus)" hidden="false" targetId="a977-b7c2-5832-0a56" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9110-5db3-6118-46c5" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7e78-d749-1ea6-7e19" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4de0-707e-7774-1a72" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b93-a716-8bfc-8456" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f1df-ab96-3a45-0b73" name="Metzger Class" hidden="false" targetId="deb5-bbe7-6b77-def9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c180-4679-1eae-4f55" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="b4c4-9dc7-5b76-b6c7" name="Scandinavian Reaver Battlefleet" hidden="false">
<infoLinks>
<infoLink id="71fa-971d-9fb4-d32d" name="Valorous Conduct" hidden="false" targetId="0d1b-0810-3b49-e25e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4fa1-338e-8831-41ae" name="Ragnarok Class" hidden="false" targetId="ebd7-627c-0866-81cb" primary="false">
<modifiers>
<modifier type="set" field="05ef-5f8c-7c2c-3494" value="0.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="138b-84c8-2ae2-129f" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05ef-5f8c-7c2c-3494" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f3b-a0e0-4434-db83" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f684-ddf1-cd92-84df" name="Odin Class" hidden="false" targetId="26cf-5a40-2fc4-bedd" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="30a0-6664-75d3-6be2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7c53-859f-b429-4ce1" name="Gungnir Class" hidden="false" targetId="d555-509b-cb82-90c3" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d025-1675-1616-a674" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ec06-19a3-b5fe-7d24" name="Volsung Class" hidden="false" targetId="c5d5-d170-4f1a-2639" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08d0-1aa5-a6d5-bee6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d345-ec5b-5ea7-35a2" name="Valkyrie Class" hidden="false" targetId="884b-1003-e9da-e4d4" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b154-3b95-79a2-1358" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3ad8-30a7-9adb-da33" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75de-e44a-17eb-ee2d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4ad4-11e1-4f6a-09e6" name="Hoth Class" hidden="false" targetId="b0b9-ca94-48ef-e72b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2dd3-d9c3-4f23-2068" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6df3-26ab-60af-a5ac" name="Jotunn Class" hidden="false" targetId="a707-9c45-3a22-df48" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afa1-fdb9-4574-9f45" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6ac4-678f-504f-0f8e" name="Loki Class" hidden="false" targetId="8770-c046-1af4-a145" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afd3-6bd5-11eb-5e26" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="32a8-f56b-c38c-714f" name="Fenrir Class" hidden="false" targetId="3ff2-e6cc-094f-2d13" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea83-3912-1e0c-8217" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="4612-1bd7-0e6e-2cd9" name="Sigimer Destroyers Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b4c4-9dc7-5b76-b6c7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b917-d93e-967e-dbfa" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f53a-e77e-8eee-a49a" name="Sigimer Class" hidden="false" targetId="75ad-5a85-ed63-1645" primary="false"/>
<categoryLink id="d4cc-2bca-b9e7-c9d4" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="b191-5189-c5a7-679b" name="Sigimer" hidden="false" collective="false" import="true" targetId="88d0-c92f-6c86-c0ec" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4308-442a-ac76-3330" name="Volsung Strike Cruiser Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="bb7c-a630-0ddf-4fef" name="Volsung Class" hidden="false" targetId="c5d5-d170-4f1a-2639" primary="false"/>
<categoryLink id="c77e-2e5c-ffb9-d216" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="195d-d294-8de9-7660" name="Sigimer" hidden="false" collective="false" import="true" targetId="19ed-7818-c226-d38f" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="3.0"/>
</costs>
</selectionEntry>
<selectionEntry id="564a-6141-ac14-6450" name="Toten Heavy Destroyers Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b4c4-9dc7-5b76-b6c7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="13f7-1fa0-e474-864a" name="Toten Class" hidden="false" targetId="0744-b06e-e9ce-2e54" primary="false"/>
<categoryLink id="aba9-ce74-a1ec-1f9d" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="dafa-f1c0-73ec-ce1c" name="Toten" hidden="false" collective="false" import="true" targetId="ae17-92f1-3924-e01b" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9270-9a4d-27df-e311" name="Schaumburg Escort Cruiser" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b4c4-9dc7-5b76-b6c7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b917-d93e-967e-dbfa" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2112-0e8e-3059-6d83" name="Imperium" hidden="false" targetId="381f-fee3-786c-1414" primary="false"/>
<categoryLink id="4814-a2e7-d383-9fff" name="Prussian" hidden="false" targetId="e382-41fb-5f68-ae0a" primary="false"/>
<categoryLink id="2bf1-9071-e605-7f84" name="Schaumburg Class" hidden="false" targetId="c6ba-ad8a-c177-066a" primary="false"/>
<categoryLink id="c78f-c6db-ce30-2e2f" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d1c4-f384-4c22-19fa" name="Schaumburg" hidden="false" collective="false" import="true" targetId="ae3d-3977-1613-551c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97f9-b15d-c0b0-6699" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="366e-b681-3d81-83d0" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="01a2-8094-758f-6ebd" name="Metzger Vitruvian Colossus Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b4c4-9dc7-5b76-b6c7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="016a-8843-872d-d129" name="Metzger Class" hidden="false" targetId="deb5-bbe7-6b77-def9" primary="false"/>
<categoryLink id="276e-a7e3-aa37-4e23" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e3f3-46bd-329e-a2c8" name="Attached Unit [Metzger]" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="24e0-0522-cfbb-7f2d" name="Hochmeister Vitruvian Colossus Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b76b-1e78-ff41-d890" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false"/>
<categoryLink id="d998-2e26-d67a-cf32" name="New CategoryLink" hidden="false" targetId="fef3-1842-580c-4bef" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7001-fd29-6737-a02c" name="Hochmeister" hidden="false" collective="false" import="true" targetId="35a7-f835-3107-ef28" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="566a-b0c1-b529-2b94" name="Metzger" hidden="false" collective="false" import="true" targetId="aa8a-205d-0c8f-6d0c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4b78-900c-f5f4-f53b" name="Reiter Flak Cruiser Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b4c4-9dc7-5b76-b6c7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b917-d93e-967e-dbfa" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="be01-f3ac-0e00-5d23" name="Reiter Class" hidden="false" targetId="3849-4733-d1de-9e88" primary="false"/>
<categoryLink id="94b2-e1c2-7e8b-482e" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="ceef-0a81-fc16-408b" name="Reiter" hidden="false" collective="false" import="true" targetId="5bf0-f49d-a5c9-e661" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af40-b43e-f831-6758" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39d6-7c8d-7494-7048" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6469-ef50-7640-66f6" name="Odin Reaver Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a6b7-a5fe-fa1e-484c" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b3fc-2011-ba34-2e15" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b917-d93e-967e-dbfa" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d456-5b55-0389-0023" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3642-1e96-d529-d402" name="Odin Class" hidden="false" targetId="26cf-5a40-2fc4-bedd" primary="false"/>
<categoryLink id="c141-7919-1d8e-6d66" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
<categoryLink id="68b4-debd-d9ed-bc99" name="Scandinavian" hidden="false" targetId="65fc-5b90-c091-9df7" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8f70-3295-162b-8d4b" name="Odin" hidden="false" collective="false" import="true" targetId="9d7a-84f1-768c-7cdf" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d782-2451-0993-54c0" name="Konrad Support Carrier Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dc04-f1b1-2ccb-1b26" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b4c4-9dc7-5b76-b6c7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f7a3-b360-b48f-cae0" name="Konrad Class" hidden="false" targetId="e814-bd03-a791-b230" primary="false"/>
<categoryLink id="b9ff-136f-367b-de4f" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8e23-fc01-c7a3-1336" name="Aces of Rensburg" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="d782-2451-0993-54c0" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e814-bd03-a791-b230" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9834-6438-e54d-efc3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d499-f5bf-e4ef-925b" name="Aces of Rensburg" hidden="false" targetId="bc6e-eb14-8b23-dd1c" type="rule"/>
</infoLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="20.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="07e1-2e91-6f74-cf54" name="Konrad" hidden="false" collective="false" import="true" targetId="60c6-0912-ed8b-3124" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1fc2-61da-a1e6-43a8" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8312-1a0e-f08d-59ae" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="76fd-1193-780a-65b5" name="Hochmeister Vitruvian Colossus Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="be40-ff53-14f5-05b4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d554-191b-783b-f2c9" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="619c-cfa8-87e4-3c97" name="Hochmeister Class" hidden="false" targetId="729b-3dab-b703-cf07" primary="false"/>
<categoryLink id="5b44-e9fb-8890-107d" name="New CategoryLink" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4db0-1247-eb8c-8c02" name="Escort duty [Metzger]" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="add" field="category" value="9ab6-c624-d0ae-dd32"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d893-4941-a721-8fb6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c63b-3569-e495-a5ce" name="Escort Duty (Metzger)" hidden="false" targetId="a056-b45d-8ef1-f0b8" type="rule">
<modifiers>
<modifier type="append" field="name" value="[Metzger]"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="daa7-471d-402d-8af1" name="Hochmeister" hidden="false" collective="false" import="true" targetId="35a7-f835-3107-ef28" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c6d3-590b-8862-6483" name="Blucher Cruiser Squadron" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="true" type="unit">