-
Notifications
You must be signed in to change notification settings - Fork 13
/
Mid-War - Afrika Korps.cat
4051 lines (4043 loc) · 295 KB
/
Mid-War - Afrika Korps.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="1db5-94f0-8315-42a2" name="Afrika Korps (Revised)" revision="8" battleScribeVersion="2.03" authorName="Ulf Bernestedt, UrsinePatriarch" authorContact="[email protected], Discord: zharrpostingghoroth" library="false" gameSystemId="976a-b687-1fdb-07ef" gameSystemRevision="25" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<readme>Overhauled Oct 2024</readme>
<profileTypes>
<profileType id="94ea-9234-fbd5-3352" name="Command Card [Abridged]">
<characteristicTypes>
<characteristicType id="1944-fd09-973e-5731" name="Details"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8236-8139-1ecb-9f79" name="PANZER III" hidden="false"/>
<categoryEntry id="a89a-0c66-b6ba-fe17" name="PANZER IV" hidden="false"/>
<categoryEntry id="3e15-8a32-a705-9365" name="INFANTRY" hidden="false"/>
<categoryEntry id="32f8-e2e7-04df-e729" name="GUN" hidden="false"/>
<categoryEntry id="614f-8959-6401-2c62" name="TANK" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="dea9-0183-003c-bd1a" name="Afrika Rifle Company" hidden="false" collective="false" import="true" targetId="8195-e8fe-d94d-0863" type="selectionEntry">
<categoryLinks>
<categoryLink id="be7c-1c39-dcb0-f878" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="55c7-84f0-094e-4c6f" name="Panzer III Tank Company" hidden="false" collective="false" import="true" targetId="912e-3dba-2ff4-ab44" type="selectionEntry">
<categoryLinks>
<categoryLink id="4892-2776-f68a-e871" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="54f7-831e-41b9-605f" name="Armoured Car Company" hidden="false" collective="false" import="true" targetId="879a-0b04-2062-775f" type="selectionEntry">
<categoryLinks>
<categoryLink id="8e4e-4a0c-46a4-690e" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b14f-d6c8-c427-3631" name="Panzer IV Tank Company" hidden="false" collective="false" import="true" targetId="0954-86f2-0fca-c5fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="e68d-b4ea-2150-34b2" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7848-d075-d62c-7189" name="10.5cm Gun or 15cm Armoured Artillery Battery" hidden="false" collective="false" import="true" targetId="87af-5a4a-1acd-f842" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="08b8-bf94-b23b-218f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0021-48c9-5366-9029" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="659d-48d4-95da-4c4a" name="Afrika Rifle Platoon" hidden="false" collective="false" import="true" targetId="a3e3-a0a5-b1cb-155c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8195-e8fe-d94d-0863" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7e73-f5bf-7244-837d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5127-7f35-cf3d-c360" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="85fc-5d59-2b4b-bf0b" name="Marder, Marder II, or Diana Support Unit" hidden="false" collective="false" import="true" targetId="3d6b-4912-00bd-0da6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1fc9-8ea5-d2fd-639d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="4a50-1e58-853a-b79b" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="846d-4210-7f14-2878" name="Panzer IV Tank Platoon" hidden="false" collective="false" import="true" targetId="2fe8-236b-99f4-44ce" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0954-86f2-0fca-c5fa" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="294e-9897-da19-1dca" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e380-386c-ff2d-6594" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0302-46b7-2ea6-8f5e" name="Ju 87 Stuka Dive Bomber Flight" hidden="false" collective="false" import="true" targetId="de9e-eba7-2d35-9d81" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="14f3-42da-6214-db13" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f3b9-e90a-a3d3-2b40" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="75ce-4a8b-f5ef-c1cf" name="Reconnaissance Support Unit" hidden="false" collective="false" import="true" targetId="5275-a14c-ea45-9444" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0311-35ac-c7b6-bebd" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="b41a-998a-85bd-e240" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f40c-6bb5-a757-5f3b" name="Tiger Tank or Diana Tank-Hunter Platoon" hidden="false" collective="false" import="true" targetId="4a4d-6e94-b13e-dcec" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3f55-2a56-587a-f5eb" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5c43-d465-87f3-242b" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="87f3-67bc-84c4-de9b" name="Command Cards" hidden="false" collective="false" import="true" targetId="27ab-4f27-5703-a40f" type="selectionEntry">
<categoryLinks>
<categoryLink id="45f1-0e3a-06d9-c2a7" name="New CategoryLink" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5f24-077a-794b-bbde" name="Tiger (P)" hidden="false" collective="false" import="true" targetId="dce3-dd07-476e-d810" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9f51-3004-d10c-5a76" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="421e-d19d-b245-5bd1" name="New CategoryLink" hidden="false" targetId="58fd-8352-c305-41bb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e07b-e526-54e5-5889" name="Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="879a-0b04-2062-775f" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="92c1-e57c-4413-20c3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c2c4-ab71-8ca4-1a93" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d0a1-e82b-489e-0e8b" name="Sd Kfz 231 Heavy Scout Troop" hidden="false" collective="false" import="true" targetId="8a59-b461-9bd1-6401" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="879a-0b04-2062-775f" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45df-6707-6def-8c03" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bd6e-cb12-866f-12c1" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1734-c52e-f1f8-022e" name="5cm Tank-Hunter Platoon" hidden="false" collective="false" import="true" targetId="1b66-d365-c756-7a90" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8195-e8fe-d94d-0863" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9171-52bd-9ba8-6cca" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e770-143e-dd92-2bce" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de64-52aa-6002-34dd" name="Fallschirm Pioneer Platoon" hidden="false" collective="false" import="true" targetId="fc1b-0117-bfae-d9bf" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="af9c-30f3-235b-5618" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3f66-2f37-8300-11b0" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="47ba-df77-e552-d43a" name="Heavy AT Support Unit" hidden="false" collective="false" import="true" targetId="12d0-e7e5-e7b2-a4e1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9bc-2fb7-6056-0899" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c3d8-15d2-e3a2-dcac" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d8bc-1e8f-0acb-cf7b" name="Observation Post Support Unit" hidden="true" collective="false" import="true" targetId="deae-76d6-e7a0-ee09" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="87af-5a4a-1acd-f842" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b75-1589-5690-3654" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68f5-0209-fc1a-f706" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="854e-8f81-92ae-d45b" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e67f-ba36-23bc-15e4" name="Anti-Air Support Unit" hidden="false" collective="false" import="true" targetId="6071-147c-22e8-f008" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="90ce-3789-f206-67ba" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8fd8-2347-c393-8ee9" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6504-f54a-46c2-561f" name="Artillery Support Unit" hidden="false" collective="false" import="true" targetId="3441-c8cd-e5d5-4d45" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d38-fe55-ad64-d303" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="4206-4cd4-0fcb-054b" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="00f5-4c7a-b2dd-8c41" name="AT Support Unit" hidden="false" collective="false" import="true" targetId="982f-136d-902e-f70e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="03e6-83cf-ae9b-1ad9" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e569-50fc-560d-aacb" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5a02-4d0d-ceb1-640d" name="Fallschirmjager Company" hidden="false" collective="false" import="true" targetId="3278-296b-fd55-cec9" type="selectionEntry">
<categoryLinks>
<categoryLink id="28b6-db0f-b0e2-930d" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bbb7-d3a1-6ba8-8349" name="Fallschirmjager Platoon" hidden="false" collective="false" import="true" targetId="6b07-e1ec-03dc-4f5d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3278-296b-fd55-cec9" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c90-cf5d-d70c-8027" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="37be-c837-6ff4-cba2" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dbc9-5e6c-10b2-30a0" name="Panzer III Platoon [Formation Support]" hidden="false" collective="false" import="true" targetId="b346-3a1e-223c-b62a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="912e-3dba-2ff4-ab44" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0a1-8cb3-1279-e156" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="520e-389b-057b-6751" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c5a6-4701-a5a3-a178" name="90th Light Rifle Company" hidden="false" collective="false" import="true" targetId="a81a-fd1d-97b4-1a73" type="selectionEntry">
<categoryLinks>
<categoryLink id="4389-75d3-be10-5203" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3997-098d-f3bf-c1c6" name="7.62cm Tank-hunter Platoon" hidden="false" collective="false" import="true" targetId="f636-ac61-cd60-cd17" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a81a-fd1d-97b4-1a73" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3088-a85a-cf8f-ffa6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c2a9-3286-5de6-eef5" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="8b75-1589-5690-3654" name="10.5cm Artillery Battery" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ac3-a248-7cee-1f2e" type="max"/>
</constraints>
<profiles>
<profile id="ba20-c390-1aed-bdb8" name="25 Pdr Artillery Battery" hidden="true" typeId="7c70-b6af-9e5a-e7f6" typeName="Gun Unit">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Motivation" typeId="0954-f596-53ea-4ef7">4+ / Last Stand 3+</characteristic>
<characteristic name="Skill" typeId="a907-592d-ab2d-5ead">3+ / Assault 4+</characteristic>
<characteristic name="Is Hit On" typeId="1f89-085b-464b-c60f">4+</characteristic>
<characteristic name="Save" typeId="ae14-5890-03de-a715">4+</characteristic>
<characteristic name="Tactical" typeId="3bad-79bd-27aa-4539">-</characteristic>
<characteristic name="Terrain Dash" typeId="a400-d543-6fb9-26d0">2"/5cm</characteristic>
<characteristic name="Cross Country Dash" typeId="34ca-877a-8ffa-1006">4"/10cm</characteristic>
<characteristic name="Road Dash" typeId="d283-e066-839c-fbd7">4"/10cm</characteristic>
<characteristic name="Cross" typeId="3f9c-89f9-0b29-0585">6</characteristic>
<characteristic name="Notes" typeId="28aa-390d-006a-1776"/>
</characteristics>
</profile>
<profile id="6a0b-64f0-4e9e-7033" name="25 pdr howitzer [Artillery]" hidden="true" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">80"/200cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a"/>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">3</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">4+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Smoke Bombardment</characteristic>
</characteristics>
</profile>
<profile id="3c65-72cf-841c-2577" name="25 pdr howitzer [Direct Fire]" hidden="true" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">24"/60cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">2</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">1</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">9</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">3+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Smoke</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9083-0578-69e1-49da" name="10.5cm howitzer" hidden="false" targetId="32af-b10e-13da-282b" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="875f-fd36-557e-85a1" name="10.5cm howitzer [Artillery]" hidden="false" targetId="3de8-6ce7-b2a1-e6b8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="482d-03e2-07d8-1893" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="669c-d81e-2dca-7f1e" name="Large Gun" hidden="false" targetId="183b-aef0-86e1-693f" type="rule"/>
<infoLink id="66fb-5948-149e-1129" name="Smoke" hidden="false" targetId="6f51-dbfe-55b0-a6d0" type="rule"/>
<infoLink id="d6cf-fc2f-9e29-d040" name="Gun" hidden="false" targetId="139e-9d64-28a3-a3dd" type="rule"/>
<infoLink id="1515-e058-6fba-8662" name="10.5cm howitzer [Direct Fire]" hidden="false" targetId="b05f-ec9a-abc8-3b66" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="b7a1-cbef-e2c7-ff54" name="Slow Firing" hidden="false" targetId="e215-d5bf-83ce-606a" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="fd74-ea87-a3a0-9827" name="Brutal" hidden="false" targetId="97da-9a33-4ff1-56f2" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d32c-1bfd-c0fa-442c" type="greaterThan"/>
<condition field="selections" scope="8b75-1589-5690-3654" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0dd4-711a-8df7-09b7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="9a58-acea-63dc-876c" name="Smoke Bombardment" hidden="false" targetId="5450-1722-5ad1-1d61" type="rule"/>
<infoLink id="7aa0-1cd2-a93e-1555" name="Gun Shield" hidden="false" targetId="2f2d-c5a9-ef7e-1b5e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8477-74c5-75c7-8d40" name="GUN" hidden="false" targetId="32f8-e2e7-04df-e729" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="331f-70a2-4636-1c56" name="Unit Size" publicationId="b8e5-51cf-456c-eafb" hidden="false" collective="false" import="true" defaultSelectionEntryId="df0b-547b-7a9f-daf7">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57bf-d592-7955-0512" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd17-eca6-6357-da1d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="df0b-547b-7a9f-daf7" name="2x 10.5cm howitzer" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d4e2-0cd9-52ac-7a23" name="4x 10.5cm howitzer" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="14.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0dd4-711a-8df7-09b7" name="2x 25 Pdr howitzer" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d32c-1bfd-c0fa-442c" name="4x 25 Pdr howitzer" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="14.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="65d8-298e-b8b4-1aeb" name="Command Cards [Unit]" hidden="false" collective="false" import="true" targetId="c6b6-7713-4f1a-22a5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="87af-5a4a-1acd-f842" name="10.5cm Gun or 15cm Armoured Artillery Battery" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce90-7614-cbe1-21d4" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="3ab4-7e0f-f2df-d991" name="Type" hidden="false" collective="false" import="true" defaultSelectionEntryId="d476-0e42-18ba-d246">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="465b-e065-5140-1c65" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26f4-d779-4d8d-2d43" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a998-3d74-4996-09e9" name="10.5cm Artillery Battery" hidden="false" collective="false" import="true" targetId="8b75-1589-5690-3654" type="selectionEntry"/>
<entryLink id="d476-0e42-18ba-d246" name="15cm (Sf) Lorraine Schlepper Artillery Battery" hidden="false" collective="false" import="true" targetId="d2d5-99f1-4c07-97d1" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1b66-d365-c756-7a90" name="5cm Tank-Hunter Platoon" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="353c-aa0c-9f68-9ad0" name="Captured 6 Pdr Anti-tank Platoon" hidden="true" typeId="7c70-b6af-9e5a-e7f6" typeName="Gun Unit">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1aae-5ef4-35c1-2737" type="greaterThan"/>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4d-7b7c-6901-335d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Motivation" typeId="0954-f596-53ea-4ef7">4+ / Last Stand 3+</characteristic>
<characteristic name="Skill" typeId="a907-592d-ab2d-5ead">3+ / Assault 4+</characteristic>
<characteristic name="Is Hit On" typeId="1f89-085b-464b-c60f">4+</characteristic>
<characteristic name="Save" typeId="ae14-5890-03de-a715">3+</characteristic>
<characteristic name="Tactical" typeId="3bad-79bd-27aa-4539">2"/5cm</characteristic>
<characteristic name="Terrain Dash" typeId="a400-d543-6fb9-26d0">2"/5cm</characteristic>
<characteristic name="Cross Country Dash" typeId="34ca-877a-8ffa-1006">4"/10cm</characteristic>
<characteristic name="Road Dash" typeId="d283-e066-839c-fbd7">4"/10cm</characteristic>
<characteristic name="Cross" typeId="3f9c-89f9-0b29-0585">5+</characteristic>
<characteristic name="Notes" typeId="28aa-390d-006a-1776"/>
</characteristics>
</profile>
<profile id="207b-9051-92fe-e76a" name="6 Pdr gun" hidden="true" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1aae-5ef4-35c1-2737" type="greaterThan"/>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4d-7b7c-6901-335d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">28"/70cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">2</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">1</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">9</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">4+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Forward Firing, No HE</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="98f4-c294-b1cf-8d6c" name="Third Reich" hidden="false" targetId="0d32-e61c-3e35-7b9e" type="rule"/>
<infoLink id="497e-dafe-6dcc-6830" name="5cm gun [Weapon]" hidden="false" targetId="dd70-41d8-f946-6066" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1aae-5ef4-35c1-2737" type="greaterThan"/>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4d-7b7c-6901-335d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="02d0-9e5e-b7ef-d5fa" name="5cm gun [Unit]" hidden="false" targetId="d223-f581-fdc0-afbc" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1aae-5ef4-35c1-2737" type="greaterThan"/>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4d-7b7c-6901-335d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="fa2d-3e8d-5e26-7593" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
<infoLink id="f2d8-f010-5c43-7bdb" name="Gun" hidden="false" targetId="139e-9d64-28a3-a3dd" type="rule"/>
<infoLink id="a352-cd3f-9510-305a" name="Gun Shield" hidden="false" targetId="2f2d-c5a9-ef7e-1b5e" type="rule"/>
<infoLink id="1239-4a64-23ca-9c20" name="No HE" hidden="true" targetId="b000-d0f1-08fd-0d43" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1aae-5ef4-35c1-2737" type="greaterThan"/>
<condition field="selections" scope="1b66-d365-c756-7a90" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4d-7b7c-6901-335d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="bd35-4760-0f78-68c7" name="GUN" hidden="false" targetId="32f8-e2e7-04df-e729" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1a5d-dd3a-3abc-d65e" name="Unit Size/Type" publicationId="b8e5-51cf-456c-eafb" hidden="false" collective="false" import="true" defaultSelectionEntryId="2c05-eab1-6a5e-8e6c">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10e7-f893-c25c-1b7c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0223-5b66-29c6-495a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="45d0-f38e-b301-b56c" name="3x 5cm gun" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2c05-eab1-6a5e-8e6c" name="2x 5cm gun" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1aae-5ef4-35c1-2737" name="2x 6 pdr guns" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="4.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e4d-7b7c-6901-335d" name="3x 6 pdr guns" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="5.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ef45-5cf2-0ab6-8acb" name="0) Command Cards [Unit]" hidden="false" collective="false" import="true" targetId="c6b6-7713-4f1a-22a5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="233e-1bc9-4a0c-d1fd" name="8.8cm Heavy AA Platoon" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="1648-1236-0db7-69a9" name="Self-Defence AA" hidden="false" targetId="6c0b-8d39-70b6-9d1c" type="rule"/>
<infoLink id="65d1-2fa1-cf88-7369" name="8.8cm AA gun" hidden="false" targetId="215d-c40a-ac50-2433" type="profile"/>
<infoLink id="e8ea-d6e1-bf25-9054" name="Large Gun" hidden="false" targetId="183b-aef0-86e1-693f" type="rule"/>
<infoLink id="0e5d-57bd-27ae-7dbb" name="8.8cm AA gun" hidden="false" targetId="c984-7646-3ae3-a803" type="profile"/>
<infoLink id="71a7-f87e-cc37-9058" name="Third Reich" hidden="false" targetId="0d32-e61c-3e35-7b9e" type="rule"/>
<infoLink id="56c8-b21a-f079-4bb5" name="Gun Shield" hidden="false" targetId="2f2d-c5a9-ef7e-1b5e" type="rule"/>
<infoLink id="6f6e-4622-20bc-cce7" name="Gun" hidden="false" targetId="139e-9d64-28a3-a3dd" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3949-1a3f-539b-5945" name="GUN" hidden="false" targetId="32f8-e2e7-04df-e729" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9a6c-696b-cec0-542c" name="Unit Size" publicationId="b8e5-51cf-456c-eafb" hidden="false" collective="false" import="true" defaultSelectionEntryId="1911-ba56-6d94-ab61">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9158-f4e0-912b-e19c" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c957-5e38-8063-0475" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1911-ba56-6d94-ab61" name="8.8cm AA gun" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="5.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b4b2-ad04-a4a4-de88" name="Command Cards [Unit]" hidden="false" collective="false" import="true" targetId="c6b6-7713-4f1a-22a5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8195-e8fe-d94d-0863" name="Afrika Rifle Company" hidden="false" collective="false" import="true" type="unit">
<selectionEntries>
<selectionEntry id="5b62-2286-69d5-8cb1" name="Afrika Rifle Company HQ" publicationId="b8e5-51cf-456c-eafb" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f8d-5fc2-95f6-cd6a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc7a-8565-04ce-8aac" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9c92-8ee9-1dac-44a1" name="Pinned ROF 1" hidden="false" targetId="3284-2a9d-b7f4-e17a" type="rule"/>
<infoLink id="3a37-34a2-40b0-ce57" name="MP40 SMG team" hidden="false" targetId="a028-247a-e0b3-b53a" type="profile"/>
<infoLink id="131b-7542-6233-ecd3" name="Stormtroopers" hidden="false" targetId="5b29-2623-7f34-fc95" type="rule"/>
<infoLink id="0a5f-0557-76d3-745b" name="MP40 SMG team" hidden="false" targetId="198a-2c9e-9db8-5d2a" type="profile"/>
<infoLink id="895d-047e-92b9-bf74" name="Third Reich" hidden="false" targetId="0d32-e61c-3e35-7b9e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7af4-88bc-47aa-6d39" name="INFANTRY" hidden="false" targetId="3e15-8a32-a705-9365" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8d15-97ed-ff9c-e06f" name="2x MP40 SMG team" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6146-e503-845b-ef72" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bea8-d311-ed7c-bd3b" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7b12-cd51-ea21-7e40" name="Command Cards [Unit]" hidden="false" collective="false" import="true" targetId="c6b6-7713-4f1a-22a5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="7658-88d8-b321-da1e" name="Tank-Hunter Platoons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="54c7-32b5-b475-837a" name="5cm Tank-Hunter Platoon" hidden="false" collective="false" import="true" targetId="1b66-d365-c756-7a90" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="41e2-f885-047d-5bb7" type="max"/>
</constraints>
</entryLink>
<entryLink id="b0ba-b287-093f-57d6" name="5cm Tank-Hunter Platoon" hidden="false" collective="false" import="true" targetId="1b66-d365-c756-7a90" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="e8da-13e8-f36d-5e74" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f31e-1889-ba7c-e333" name="5cm Tank-Hunter Platoon" hidden="false" collective="false" import="true" targetId="1b66-d365-c756-7a90" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="b160-e16e-9323-0adb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="5353-7fff-715d-4927" type="max"/>
</constraints>
</entryLink>
<entryLink id="fba4-03fe-4a96-15ed" name="Sd Kfz 10/4 Light AA Platoon" hidden="false" collective="false" import="true" targetId="e176-eaf3-6806-dfb4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b206-914b-aed6-d2c0" type="max"/>
</constraints>
</entryLink>
<entryLink id="daad-39ec-a729-aa9a" name="Afrika Rifle Platoon" hidden="false" collective="false" import="true" targetId="a3e3-a0a5-b1cb-155c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="dc02-6921-2a0e-8f9e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2258-c9a0-eedf-f650" type="max"/>
</constraints>
</entryLink>
<entryLink id="9324-9a54-6952-742b" name="Afrika Rifle Platoon" hidden="false" collective="false" import="true" targetId="a3e3-a0a5-b1cb-155c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="6427-5a70-4205-8278" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="0f99-8107-cc55-5e9a" type="max"/>
</constraints>
</entryLink>
<entryLink id="ddcd-b903-ef9f-58ac" name="Afrika Rifle Platoon" hidden="false" collective="false" import="true" targetId="a3e3-a0a5-b1cb-155c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="191b-ac99-0cac-8c12" type="max"/>
</constraints>
</entryLink>
<entryLink id="5610-bb12-f13e-b545" name="Command Cards [Formation]" hidden="false" collective="false" import="true" targetId="4b7e-918b-6013-0206" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a3e3-a0a5-b1cb-155c" name="Afrika Rifle Platoon" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="f277-0bf1-1878-94bb" name="Stormtroopers" hidden="false" targetId="5b29-2623-7f34-fc95" type="rule"/>
<infoLink id="c114-d6a8-6cce-9516" name="Third Reich" hidden="false" targetId="0d32-e61c-3e35-7b9e" type="rule"/>
<infoLink id="3dfe-d13f-d30b-7c6a" name="MG34 team" hidden="false" targetId="da6b-9ea6-5c21-092d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8f91-fec7-6d88-64e5" name="INFANTRY" hidden="false" targetId="3e15-8a32-a705-9365" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c6c0-865d-169f-9dbf" name="1x 8cm mortar" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d31-84c2-5fe9-6283" type="max"/>
</constraints>
<infoLinks>
<infoLink id="736a-1a03-2c07-66a3" name="8cm mortar" hidden="false" targetId="5328-88c0-a5ee-781a" type="profile"/>
<infoLink id="462a-cfb4-b48e-0c46" name="Assault 4+" hidden="false" targetId="dc00-41ba-b4dd-f068" type="rule"/>
<infoLink id="66c8-096e-9c4b-11ed" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e3c1-6ad4-573c-c645" name="1x sMG34 HMG" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3805-0694-a0bd-1ff1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e2d2-3063-a9d0-a3d9" name="sMG34 HMG" hidden="false" targetId="bae9-90b2-6eb3-95c6" type="profile"/>
<infoLink id="35b2-3e42-5688-1cb7" name="Assault 4+" hidden="false" targetId="dc00-41ba-b4dd-f068" type="rule"/>
<infoLink id="19c6-d50b-db1b-6722" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="7dd1-dd47-fa45-b956" name="Unit Size" publicationId="b8e5-51cf-456c-eafb" hidden="false" collective="false" import="true" defaultSelectionEntryId="620a-d759-db64-c0aa">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="833a-ad63-05b4-5cf5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5a1-2f2f-52aa-6503" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="fb49-30d6-2515-4c14" name="4x MG34, 1x 2.8cm anti-tank rifle" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="e4d0-6e9c-563f-b0a0" name="4x MG34 team" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7276-fd48-db5c-1f66" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="98dc-facd-8d3a-d52d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f0f0-305d-08ec-5f07" name="MG34 team (W)" hidden="false" targetId="dc51-5020-0fc4-c611" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e942-2d6f-1979-6c86" name="1x 2.8cm anti-tank rifle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b71-f259-4f44-580c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e0a-218e-ad24-7e80" type="max"/>
</constraints>
<infoLinks>
<infoLink id="093c-6d66-318f-0db4" name="Assault 4+" hidden="false" targetId="dc00-41ba-b4dd-f068" type="rule"/>
<infoLink id="6046-02f9-969d-38ae" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
<infoLink id="a3cc-85cd-d8c7-bdd1" name="No HE" hidden="false" targetId="b000-d0f1-08fd-0d43" type="rule"/>
<infoLink id="3423-d8c0-f719-4089" name="2.8cm anti-tank rifle" hidden="false" targetId="5589-f659-399a-20b8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="620a-d759-db64-c0aa" name="3x MG34, 1x 2.8cm anti-tank rifle" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="46fe-d1af-39aa-4974" name="3x MG34 team" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8565-46e6-8ac4-ff84" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="06a2-3c4f-292f-ed1c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c12d-f8fc-75a7-9764" name="MG34 team (W)" hidden="false" targetId="dc51-5020-0fc4-c611" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8366-b3ff-a354-17d0" name="1x 2.8cm anti-tank rifle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d41-1831-7b98-d9c5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72dd-e5c6-8ad3-6327" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c14d-dcc8-d7e7-e947" name="Assault 4+" hidden="false" targetId="dc00-41ba-b4dd-f068" type="rule"/>
<infoLink id="2527-52a7-d405-6732" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
<infoLink id="2a13-414b-d370-a3b2" name="No HE" hidden="false" targetId="b000-d0f1-08fd-0d43" type="rule"/>
<infoLink id="d2ca-bbce-536c-0c33" name="2.8cm anti-tank rifle" hidden="false" targetId="5589-f659-399a-20b8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="6.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="8d7e-10da-ac8b-cefe" name="Command Cards [Unit]" hidden="false" collective="false" import="true" targetId="c6b6-7713-4f1a-22a5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="879a-0b04-2062-775f" name="Armoured Car Company" hidden="false" collective="false" import="true" type="unit">
<selectionEntries>
<selectionEntry id="dc3e-76c7-4724-abe5" name="Armoured Car Company HQ" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5b0-a8f5-b4c3-78d6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14b2-b138-26bd-c751" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0aed-ce49-de2b-d9e7" name="Sd Kfz 222 & 221 [Unit]" hidden="false" targetId="b9c5-805b-4d8e-f2e2" type="profile"/>
<infoLink id="42c6-d68f-aeac-99ea" name="Scout" hidden="false" targetId="967a-118e-dc01-7e0b" type="rule"/>
<infoLink id="84e5-2b35-4397-5bfc" name="Self-Defence AA" hidden="false" targetId="6c0b-8d39-70b6-9d1c" type="rule"/>
<infoLink id="6f41-ab5c-9f6f-b0cc" name="Spearhead" hidden="false" targetId="70fc-43a3-1ed1-1b01" type="rule"/>
<infoLink id="df34-fda0-6af0-48da" name="Stormtroopers" hidden="false" targetId="5b29-2623-7f34-fc95" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="dda6-557f-8b26-1594" name="Type" hidden="false" collective="false" import="true" defaultSelectionEntryId="10ac-f1e8-86e1-bec2">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00f6-6c6c-786f-60bd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eab5-cbc3-2edc-55c2" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="cc80-9d2d-b6b7-fc5b" name="1x Sd Kfz 221 (2.8cm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="3cb4-d416-ebfb-bb9d" name="Sd Kfz 221 (2.8cm)" hidden="false" targetId="269b-6001-8015-8bcc" type="profile"/>
<infoLink id="d81f-d3e8-ec55-0a44" name="No HE" hidden="false" targetId="b000-d0f1-08fd-0d43" type="rule"/>
<infoLink id="5f22-022c-5f08-ef80" name="Slow Firing" hidden="false" targetId="e215-d5bf-83ce-606a" type="rule"/>
<infoLink id="9ceb-e730-e119-823c" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="10ac-f1e8-86e1-bec2" name="1x Sd Kfz 221 (MG)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="a0bf-7858-9f70-eac4" name="Sd Kfz 222 & 221 (MG)" hidden="false" targetId="c190-2257-2267-8970" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c48d-68ff-a809-45d3" name="Command Cards [Unit]" hidden="false" collective="false" import="true" targetId="c6b6-7713-4f1a-22a5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="8fee-4c4e-1404-4072" name="Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e63e-8d91-3773-5b71" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="efb1-e108-4a8f-cc8c" type="max"/>
</constraints>
</entryLink>
<entryLink id="c632-fbf8-fbda-2e9f" name="Afrika Rifle Platoon" hidden="false" collective="false" import="true" targetId="a3e3-a0a5-b1cb-155c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e855-ebaf-3c63-1173" type="max"/>
</constraints>
</entryLink>
<entryLink id="1535-102e-4c1c-9755" name="*** Sd Kfz 231 Heavy Scout Troop" hidden="false" collective="false" import="true" targetId="8a59-b461-9bd1-6401" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1475-f214-fc2e-fcba" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99dd-8d6e-b6cf-e448" type="max"/>
</constraints>
</entryLink>
<entryLink id="74a1-4d45-b1f2-77e9" name="*** Sd Kfz 231 Heavy Scout Troop" hidden="false" collective="false" import="true" targetId="8a59-b461-9bd1-6401" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57ac-1c0d-340b-254f" type="max"/>
</constraints>
</entryLink>
<entryLink id="34ea-6b8f-e69a-d1a7" name="*** Sd Kfz 231 Heavy Scout Troop" hidden="false" collective="false" import="true" targetId="8a59-b461-9bd1-6401" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="914f-ad4a-e282-781c" type="max"/>
</constraints>
</entryLink>
<entryLink id="9690-01d6-1eb2-2a69" name="***Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf43-712d-fef3-607e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="cc13-5afa-d107-3e63" type="max"/>
</constraints>
</entryLink>
<entryLink id="a61f-aa8c-fcd9-733d" name="***Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3a8a-de60-a522-8ca2" type="max"/>
</constraints>
</entryLink>
<entryLink id="ca16-a6bc-ca0c-31d6" name="***Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6bfa-76e9-6de0-1244" type="max"/>
</constraints>
</entryLink>
<entryLink id="1cbd-e2ae-2098-68ea" name="***Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d335-4e06-2009-52bc" type="max"/>
</constraints>
</entryLink>
<entryLink id="598b-0680-3a53-2a00" name="***Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="75ef-e6fa-d6ad-8be5" type="max"/>
</constraints>
</entryLink>
<entryLink id="cc0b-e2ed-e5ac-bfbd" name="***Sd Kfz 221 & 222 Light Scout Troop" hidden="false" collective="false" import="true" targetId="1805-7cf8-8b3f-a2df" type="selectionEntry">
<constraints>