-
Notifications
You must be signed in to change notification settings - Fork 0
/
biggest-battles-map.html
6673 lines (3857 loc) · 512 KB
/
biggest-battles-map.html
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
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css" />
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_f955d9ba1f1f42b2a858211365a41d87 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css" />
</head>
<body>
<div class="folium-map" id="map_f955d9ba1f1f42b2a858211365a41d87" ></div>
</body>
<script>
var bounds = null;
var map_f955d9ba1f1f42b2a858211365a41d87 = L.map(
'map_f955d9ba1f1f42b2a858211365a41d87',
{center: [20,0],
zoom: 2,
maxBounds: bounds,
layers: [],
worldCopyJump: true,
crs: L.CRS.EPSG3857
});
var tile_layer_9566bcf195a240399520db68c4a1ca0b = L.tileLayer(
'https://{s}.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_f955d9ba1f1f42b2a858211365a41d87);
var marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda = L.markerClusterGroup({
});
map_f955d9ba1f1f42b2a858211365a41d87.addLayer(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var marker_c78f4fed50464b64ae769716e63f4a73 = L.marker(
[-2.0,30.0],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_e03fbfb64b944ae988b986acf6416c22 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_c78f4fed50464b64ae769716e63f4a73.setIcon(icon_e03fbfb64b944ae988b986acf6416c22);
var popup_ac6cab0363cd4fd994e8409dbcf05f01 = L.popup({maxWidth: '300'});
var html_b0b103a49294415693d6c9f7e9537594 = $('<div id="html_b0b103a49294415693d6c9f7e9537594" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994-1997<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>323984</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>21125</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>571202</td> </tr> <tr> <td>Civilian casualties:</td> <td>323984</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_ac6cab0363cd4fd994e8409dbcf05f01.setContent(html_b0b103a49294415693d6c9f7e9537594);
marker_c78f4fed50464b64ae769716e63f4a73.bindPopup(popup_ac6cab0363cd4fd994e8409dbcf05f01);
var marker_63aa27d62a5e4bc7a05284e022e40d44 = L.marker(
[14.538069,39.388019],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_a72490b76d814ca3a93aa6824f57ddbe = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_63aa27d62a5e4bc7a05284e022e40d44.setIcon(icon_a72490b76d814ca3a93aa6824f57ddbe);
var popup_0467db49f1614f7b95edd4b47122084c = L.popup({maxWidth: '300'});
var html_7b3bf0e78ba04925b966c7350bc1f36b = $('<div id="html_7b3bf0e78ba04925b966c7350bc1f36b" style="width: 100.0%; height: 100.0%;"><h5>Government of Eritrea-Government of Ethiopia</h5><hr><b>Time period:</b> 1999-2000<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>78183</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>78183</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>78063</td> </tr> <tr> <td>Civilian casualties:</td> <td>0</td> </tr> <tr> <td>Other casualties:</td> <td>78183</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Ethiopia</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Eritrea</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Government of Ethiopia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_0467db49f1614f7b95edd4b47122084c.setContent(html_7b3bf0e78ba04925b966c7350bc1f36b);
marker_63aa27d62a5e4bc7a05284e022e40d44.bindPopup(popup_0467db49f1614f7b95edd4b47122084c);
var marker_d181579799bf4f41885edd04db812653 = L.marker(
[-2.6117,29.644000000000002],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_b75bd50009394e87a3fc6c618bf54864 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_d181579799bf4f41885edd04db812653.setIcon(icon_b75bd50009394e87a3fc6c618bf54864);
var popup_f5a216204a13452780b58f01dae2e164 = L.popup({maxWidth: '300'});
var html_46b5b762fca64fe39cfbd8c860f7ccf2 = $('<div id="html_46b5b762fca64fe39cfbd8c860f7ccf2" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>40000</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>17000</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>43000</td> </tr> <tr> <td>Civilian casualties:</td> <td>40000</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_f5a216204a13452780b58f01dae2e164.setContent(html_46b5b762fca64fe39cfbd8c860f7ccf2);
marker_d181579799bf4f41885edd04db812653.bindPopup(popup_f5a216204a13452780b58f01dae2e164);
var marker_40367b3522614e3f973cbe67ffcf8a1b = L.marker(
[-2.6465,29.5591],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_2d2620b903534083aca1615fb26e5768 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_40367b3522614e3f973cbe67ffcf8a1b.setIcon(icon_2d2620b903534083aca1615fb26e5768);
var popup_878d890075e74463b2d4163af56ddd8b = L.popup({maxWidth: '300'});
var html_376484ec1f734b6abefea5c8dfbece7e = $('<div id="html_376484ec1f734b6abefea5c8dfbece7e" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994-1995<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>31590</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>29590</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>35590</td> </tr> <tr> <td>Civilian casualties:</td> <td>31590</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_878d890075e74463b2d4163af56ddd8b.setContent(html_376484ec1f734b6abefea5c8dfbece7e);
marker_40367b3522614e3f973cbe67ffcf8a1b.bindPopup(popup_878d890075e74463b2d4163af56ddd8b);
var marker_b4cedf1ba6144cbaa1a3ab381ebf4226 = L.marker(
[-2.178985,29.341217999999998],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_c030f60738a3456a893ef02319e0217b = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_b4cedf1ba6144cbaa1a3ab381ebf4226.setIcon(icon_c030f60738a3456a893ef02319e0217b);
var popup_05cf4e313b324b9ea7b3a0d9862ec842 = L.popup({maxWidth: '300'});
var html_8788250237914c849dd332dc5cf57ca2 = $('<div id="html_8788250237914c849dd332dc5cf57ca2" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>30003</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>25003</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>40003</td> </tr> <tr> <td>Civilian casualties:</td> <td>30003</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_05cf4e313b324b9ea7b3a0d9862ec842.setContent(html_8788250237914c849dd332dc5cf57ca2);
marker_b4cedf1ba6144cbaa1a3ab381ebf4226.bindPopup(popup_05cf4e313b324b9ea7b3a0d9862ec842);
var marker_74b6b32154c64577a606cb4d3f075c0e = L.marker(
[33.0,44.0],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_a27d56aad9a1488bb442eaedc0ca8f92 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_74b6b32154c64577a606cb4d3f075c0e.setIcon(icon_a27d56aad9a1488bb442eaedc0ca8f92);
var popup_4f6fdbc0215444fa9a32fb58868bc099 = L.popup({maxWidth: '300'});
var html_aaa80047363a42cf8de530f689a870d8 = $('<div id="html_aaa80047363a42cf8de530f689a870d8" style="width: 100.0%; height: 100.0%;"><h5>Government of Iraq-Government of Kuwait</h5><hr><b>Time period:</b> 1991<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>19022</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>19022</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>23022</td> </tr> <tr> <td>Civilian casualties:</td> <td>1942</td> </tr> <tr> <td>Other casualties:</td> <td>7176</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Iraq</td> </tr> <tr> <td>Battle region:</td> <td>Middle East</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Iraq</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>1</td> </tr> </table><br><b>Side B: Government of Kuwait</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>9903</td> </tr> </table></div>')[0];
popup_4f6fdbc0215444fa9a32fb58868bc099.setContent(html_aaa80047363a42cf8de530f689a870d8);
marker_74b6b32154c64577a606cb4d3f075c0e.bindPopup(popup_4f6fdbc0215444fa9a32fb58868bc099);
var marker_614d30e0819d4e279f0a4aaccefe59fe = L.marker(
[15.44917,39.0886],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_9aa4acdfe3ac40a7a3ce971ba0e9aa0c = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_614d30e0819d4e279f0a4aaccefe59fe.setIcon(icon_9aa4acdfe3ac40a7a3ce971ba0e9aa0c);
var popup_2b7ac5d4e7ec4ad99441a252c84f9cb1 = L.popup({maxWidth: '300'});
var html_302556a662244d93a9dfd417fdd5b999 = $('<div id="html_302556a662244d93a9dfd417fdd5b999" style="width: 100.0%; height: 100.0%;"><h5>Ethiopia:Eritrea</h5><hr><b>Time period:</b> 1990<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>16060</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>16060</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>16060</td> </tr> <tr> <td>Civilian casualties:</td> <td>60</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Ethiopia</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Ethiopia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>16000</td> </tr> </table><br><b>Side B: EPLF (Eritrean People’s Liberation Front)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_2b7ac5d4e7ec4ad99441a252c84f9cb1.setContent(html_302556a662244d93a9dfd417fdd5b999);
marker_614d30e0819d4e279f0a4aaccefe59fe.bindPopup(popup_2b7ac5d4e7ec4ad99441a252c84f9cb1);
var marker_5e799144db224c6c8109d77ffce84d5e = L.marker(
[14.7275,37.803055],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_cd7d613acd4c4ebd97565be565a9105c = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_5e799144db224c6c8109d77ffce84d5e.setIcon(icon_cd7d613acd4c4ebd97565be565a9105c);
var popup_f002431dcdf0462693df04794f767f42 = L.popup({maxWidth: '300'});
var html_72ebc38b89414cf2b2b1f937d138494a = $('<div id="html_72ebc38b89414cf2b2b1f937d138494a" style="width: 100.0%; height: 100.0%;"><h5>Government of Eritrea-Government of Ethiopia</h5><hr><b>Time period:</b> 1998-2000<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>15228</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>15228</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>15348</td> </tr> <tr> <td>Civilian casualties:</td> <td>113</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Eritrea</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Eritrea</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>10031</td> </tr> </table><br><b>Side B: Government of Ethiopia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>5084</td> </tr> </table></div>')[0];
popup_f002431dcdf0462693df04794f767f42.setContent(html_72ebc38b89414cf2b2b1f937d138494a);
marker_5e799144db224c6c8109d77ffce84d5e.bindPopup(popup_f002431dcdf0462693df04794f767f42);
var marker_63f9d25415bb4904bd394e0ca982bbb9 = L.marker(
[-2.333333,29.533333000000002],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_6a006b054f2742e6a1e7addea361d987 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_63f9d25415bb4904bd394e0ca982bbb9.setIcon(icon_6a006b054f2742e6a1e7addea361d987);
var popup_203d7ed8081541dc830396be58d308cf = L.popup({maxWidth: '300'});
var html_c488bd2dc92345779c2f579d243e046a = $('<div id="html_c488bd2dc92345779c2f579d243e046a" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>12000</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>12000</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>12000</td> </tr> <tr> <td>Civilian casualties:</td> <td>12000</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_203d7ed8081541dc830396be58d308cf.setContent(html_c488bd2dc92345779c2f579d243e046a);
marker_63f9d25415bb4904bd394e0ca982bbb9.bindPopup(popup_203d7ed8081541dc830396be58d308cf);
var marker_2bd20c1d9cca4de583992a0142a013d3 = L.marker(
[-2.164444,30.541944],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_12d201110d304395a7e33e19885bab9d = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_2bd20c1d9cca4de583992a0142a013d3.setIcon(icon_12d201110d304395a7e33e19885bab9d);
var popup_e4c868aa22b044bd82ea1f31bb0215fd = L.popup({maxWidth: '300'});
var html_51f8d6b8e28f47edb33f64a7b7692210 = $('<div id="html_51f8d6b8e28f47edb33f64a7b7692210" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>11171</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>11171</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>11171</td> </tr> <tr> <td>Civilian casualties:</td> <td>11171</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_e4c868aa22b044bd82ea1f31bb0215fd.setContent(html_51f8d6b8e28f47edb33f64a7b7692210);
marker_2bd20c1d9cca4de583992a0142a013d3.bindPopup(popup_e4c868aa22b044bd82ea1f31bb0215fd);
var marker_075bf3c48d7f41ce95383f613e42ae95 = L.marker(
[33.0,65.0],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_400edf4ba3174a36830dd54c14e50467 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_075bf3c48d7f41ce95383f613e42ae95.setIcon(icon_400edf4ba3174a36830dd54c14e50467);
var popup_77a9b5cdb60b40779d503416f496ba63 = L.popup({maxWidth: '300'});
var html_096c94cd1fe44e99b9d5ed6ccc3bf01b = $('<div id="html_096c94cd1fe44e99b9d5ed6ccc3bf01b" style="width: 100.0%; height: 100.0%;"><h5>Afghanistan:Government</h5><hr><b>Time period:</b> 1995-2016<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>10256</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>9880</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>19051</td> </tr> <tr> <td>Civilian casualties:</td> <td>78</td> </tr> <tr> <td>Other casualties:</td> <td>68</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Afghanistan</td> </tr> <tr> <td>Battle region:</td> <td>Asia</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Afghanistan</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>6536</td> </tr> </table><br><b>Side B: Taleban</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>3574</td> </tr> </table></div>')[0];
popup_77a9b5cdb60b40779d503416f496ba63.setContent(html_096c94cd1fe44e99b9d5ed6ccc3bf01b);
marker_075bf3c48d7f41ce95383f613e42ae95.bindPopup(popup_77a9b5cdb60b40779d503416f496ba63);
var marker_2c6722d5be984488b57838bd82953c00 = L.marker(
[-2.6995,29.7489],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_2a2d9ae20c424303be60c1c00faeafa0 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_2c6722d5be984488b57838bd82953c00.setIcon(icon_2a2d9ae20c424303be60c1c00faeafa0);
var popup_d0eedcf96417420a8242825dc595ef4e = L.popup({maxWidth: '300'});
var html_208b156ea964462eb9d3b092a18e04f5 = $('<div id="html_208b156ea964462eb9d3b092a18e04f5" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>10003</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>10003</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>10503</td> </tr> <tr> <td>Civilian casualties:</td> <td>10003</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_d0eedcf96417420a8242825dc595ef4e.setContent(html_208b156ea964462eb9d3b092a18e04f5);
marker_2c6722d5be984488b57838bd82953c00.bindPopup(popup_d0eedcf96417420a8242825dc595ef4e);
var marker_ac0b9000219645f4a0c2860289335efd = L.marker(
[14.138333,38.402777],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_3e771deedaa940b2b6067e304728d080 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_ac0b9000219645f4a0c2860289335efd.setIcon(icon_3e771deedaa940b2b6067e304728d080);
var popup_94b9bf10db254ac58cf7eb1faf55a431 = L.popup({maxWidth: '300'});
var html_115833d996834a948047b78bd7d8e34a = $('<div id="html_115833d996834a948047b78bd7d8e34a" style="width: 100.0%; height: 100.0%;"><h5>Ethiopia:Government</h5><hr><b>Time period:</b> 1989<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>9000</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>9000</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>9000</td> </tr> <tr> <td>Civilian casualties:</td> <td>0</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Ethiopia</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Ethiopia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>9000</td> </tr> </table><br><b>Side B: EPRDF (Ethiopian People’s Revolutionary Democratic Front)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_94b9bf10db254ac58cf7eb1faf55a431.setContent(html_115833d996834a948047b78bd7d8e34a);
marker_ac0b9000219645f4a0c2860289335efd.bindPopup(popup_94b9bf10db254ac58cf7eb1faf55a431);
var marker_1c8248602586450fa9f5cc4448eaa8fd = L.marker(
[15.333329999999998,38.93333],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_f4560244e66147e8b19b9d6c8bd16cde = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_1c8248602586450fa9f5cc4448eaa8fd.setIcon(icon_f4560244e66147e8b19b9d6c8bd16cde);
var popup_17e83d36a706411f81bb35e63a309c6e = L.popup({maxWidth: '300'});
var html_14c1cd0c9a24464192e102e951dc8201 = $('<div id="html_14c1cd0c9a24464192e102e951dc8201" style="width: 100.0%; height: 100.0%;"><h5>Ethiopia:Eritrea</h5><hr><b>Time period:</b> 1989-1991<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>8669</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>8666</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>8669</td> </tr> <tr> <td>Civilian casualties:</td> <td>113</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Ethiopia</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Ethiopia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>8556</td> </tr> </table><br><b>Side B: EPLF (Eritrean People’s Liberation Front)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_17e83d36a706411f81bb35e63a309c6e.setContent(html_14c1cd0c9a24464192e102e951dc8201);
marker_1c8248602586450fa9f5cc4448eaa8fd.bindPopup(popup_17e83d36a706411f81bb35e63a309c6e);
var marker_9a76b7320ebe4be58288959e095cd63f = L.marker(
[-1.0,15.0],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_eb83f4e792434204b806f716d68e690f = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_9a76b7320ebe4be58288959e095cd63f.setIcon(icon_eb83f4e792434204b806f716d68e690f);
var popup_8b6c0284e74b4fbfbf3d8a530888fe98 = L.popup({maxWidth: '300'});
var html_4da196e6fd854678823f478fa21322bc = $('<div id="html_4da196e6fd854678823f478fa21322bc" style="width: 100.0%; height: 100.0%;"><h5>Congo:Government</h5><hr><b>Time period:</b> 1997<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>8532</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>8532</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>16472</td> </tr> <tr> <td>Civilian casualties:</td> <td>0</td> </tr> <tr> <td>Other casualties:</td> <td>8532</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Congo</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Congo</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Cobras</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_8b6c0284e74b4fbfbf3d8a530888fe98.setContent(html_4da196e6fd854678823f478fa21322bc);
marker_9a76b7320ebe4be58288959e095cd63f.bindPopup(popup_8b6c0284e74b4fbfbf3d8a530888fe98);
var marker_1a5d1e9dc1c440dab9eb510b672689aa = L.marker(
[31.739444,-106.486944],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_dfc531ce1b7f4346832cc884343e5b4a = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_1a5d1e9dc1c440dab9eb510b672689aa.setIcon(icon_dfc531ce1b7f4346832cc884343e5b4a);
var popup_473a6f7d3f9346739b8a0869fe7f2285 = L.popup({maxWidth: '300'});
var html_0b99e51255f7480c953c39bfe2f37054 = $('<div id="html_0b99e51255f7480c953c39bfe2f37054" style="width: 100.0%; height: 100.0%;"><h5>Juarez Cartel - Sinaloa Cartel</h5><hr><b>Time period:</b> 2004-2016<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>8398</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>8397</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>8989</td> </tr> <tr> <td>Civilian casualties:</td> <td>8</td> </tr> <tr> <td>Other casualties:</td> <td>8367</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Mexico</td> </tr> <tr> <td>Battle region:</td> <td>Americas</td> </tr> <tr> <td>Type of violence:</td> <td>non-state</td> </tr> </table><br><b>Side A: Juarez Cartel</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>3</td> </tr> </table><br><b>Side B: Sinaloa Cartel</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>20</td> </tr> </table></div>')[0];
popup_473a6f7d3f9346739b8a0869fe7f2285.setContent(html_0b99e51255f7480c953c39bfe2f37054);
marker_1a5d1e9dc1c440dab9eb510b672689aa.bindPopup(popup_473a6f7d3f9346739b8a0869fe7f2285);
var marker_cae61beee3d34d82861e2c274ab8f478 = L.marker(
[44.106389,19.296944],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_12bff988875b404db5510fc3d7700e4b = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_cae61beee3d34d82861e2c274ab8f478.setIcon(icon_12bff988875b404db5510fc3d7700e4b);
var popup_2e5596a9fd4a46e9bb553fc5ac9b58a9 = L.popup({maxWidth: '300'});
var html_5455d292c9af40a6a935a4230c4ce648 = $('<div id="html_5455d292c9af40a6a935a4230c4ce648" style="width: 100.0%; height: 100.0%;"><h5>Serbian irregulars, Serbian Republic of Bosnia-Herzegovina - Civilians</h5><hr><b>Time period:</b> 1993-1995<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>8172</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>8172</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>8202</td> </tr> <tr> <td>Civilian casualties:</td> <td>8172</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Bosnia-Herzegovina</td> </tr> <tr> <td>Battle region:</td> <td>Europe</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Serbian irregulars, Serbian Republic of Bosnia-Herzegovina</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_2e5596a9fd4a46e9bb553fc5ac9b58a9.setContent(html_5455d292c9af40a6a935a4230c4ce648);
marker_cae61beee3d34d82861e2c274ab8f478.bindPopup(popup_2e5596a9fd4a46e9bb553fc5ac9b58a9);
var marker_71d9bd23564b45c0a4d7ffd78e2b7a14 = L.marker(
[34.531094,69.162796],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_37d1256e340b4729b5fceaf15d6a8996 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_71d9bd23564b45c0a4d7ffd78e2b7a14.setIcon(icon_37d1256e340b4729b5fceaf15d6a8996);
var popup_8ab442ff502c404b88b528267a14df5c = L.popup({maxWidth: '300'});
var html_346cf0a70ac54ac0bc53c1026fe10f79 = $('<div id="html_346cf0a70ac54ac0bc53c1026fe10f79" style="width: 100.0%; height: 100.0%;"><h5>Afghanistan:Government</h5><hr><b>Time period:</b> 1994-1995<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>7069</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>7069</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>7083</td> </tr> <tr> <td>Civilian casualties:</td> <td>57</td> </tr> <tr> <td>Other casualties:</td> <td>6903</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Afghanistan</td> </tr> <tr> <td>Battle region:</td> <td>Asia</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Afghanistan</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>3</td> </tr> </table><br><b>Side B: Junbish-i Milli-yi Islami (National Islamic Movement)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>106</td> </tr> </table></div>')[0];
popup_8ab442ff502c404b88b528267a14df5c.setContent(html_346cf0a70ac54ac0bc53c1026fe10f79);
marker_71d9bd23564b45c0a4d7ffd78e2b7a14.bindPopup(popup_8ab442ff502c404b88b528267a14df5c);
var marker_f94cd9dc0e7544fe8dec77d23a4635d3 = L.marker(
[43.3058,45.7477],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_f1cba3a8bb7443b48092bbe5f1e37c42 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_f94cd9dc0e7544fe8dec77d23a4635d3.setIcon(icon_f1cba3a8bb7443b48092bbe5f1e37c42);
var popup_403b54ea0fe645e0992e2536cd19329f = L.popup({maxWidth: '300'});
var html_b5af2cc3647d4ef5acd25e493d79bbd2 = $('<div id="html_b5af2cc3647d4ef5acd25e493d79bbd2" style="width: 100.0%; height: 100.0%;"><h5>Russia (Soviet Union):Chechnya</h5><hr><b>Time period:</b> 1994-2007<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>6827</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>6789</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>12431</td> </tr> <tr> <td>Civilian casualties:</td> <td>761</td> </tr> <tr> <td>Other casualties:</td> <td>3575</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Russia (Soviet Union)</td> </tr> <tr> <td>Battle region:</td> <td>Europe</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Russia (Soviet Union) (Government of Soviet Union)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>1761</td> </tr> </table><br><b>Side B: Chechen Republic of Ichkeria</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>730</td> </tr> </table></div>')[0];
popup_403b54ea0fe645e0992e2536cd19329f.setContent(html_b5af2cc3647d4ef5acd25e493d79bbd2);
marker_f94cd9dc0e7544fe8dec77d23a4635d3.bindPopup(popup_403b54ea0fe645e0992e2536cd19329f);
var marker_3d27c79d545746ca814b15921f8dd212 = L.marker(
[33.0,44.0],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_87df6d7ba9d44db58d8977f8aec69657 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_3d27c79d545746ca814b15921f8dd212.setIcon(icon_87df6d7ba9d44db58d8977f8aec69657);
var popup_2dd84bb04aae452d929b7d83bdbf235a = L.popup({maxWidth: '300'});
var html_c540afb80815431cb0e239eb395bd0b4 = $('<div id="html_c540afb80815431cb0e239eb395bd0b4" style="width: 100.0%; height: 100.0%;"><h5>Governments of Australia, United Kingdom, United States - Government of Iraq</h5><hr><b>Time period:</b> 2003<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>6629</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>6666</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>11777</td> </tr> <tr> <td>Civilian casualties:</td> <td>25</td> </tr> <tr> <td>Other casualties:</td> <td>6573</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Iraq</td> </tr> <tr> <td>Battle region:</td> <td>Middle East</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Australia, Government of United Kingdom, Government of United States of America</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>4</td> </tr> </table><br><b>Side B: Government of Iraq</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>27</td> </tr> </table></div>')[0];
popup_2dd84bb04aae452d929b7d83bdbf235a.setContent(html_c540afb80815431cb0e239eb395bd0b4);
marker_3d27c79d545746ca814b15921f8dd212.bindPopup(popup_2dd84bb04aae452d929b7d83bdbf235a);
var marker_795e649483aa47a88dbe319312595c52 = L.marker(
[-12.776111,15.739167000000002],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_dab6900ac5314e1f91e158bd0196cf1c = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_795e649483aa47a88dbe319312595c52.setIcon(icon_dab6900ac5314e1f91e158bd0196cf1c);
var popup_eb45e322ce8d45009e7446430490f0d3 = L.popup({maxWidth: '300'});
var html_cf29c707923240fcac113939f3975b8d = $('<div id="html_cf29c707923240fcac113939f3975b8d" style="width: 100.0%; height: 100.0%;"><h5>Angola:Government</h5><hr><b>Time period:</b> 1990-2001<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>6526</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>6526</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>12137</td> </tr> <tr> <td>Civilian casualties:</td> <td>80</td> </tr> <tr> <td>Other casualties:</td> <td>6245</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Angola</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Angola</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>28</td> </tr> </table><br><b>Side B: UNITA (National Union for the Total Independence of Angola)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>173</td> </tr> </table></div>')[0];
popup_eb45e322ce8d45009e7446430490f0d3.setContent(html_cf29c707923240fcac113939f3975b8d);
marker_795e649483aa47a88dbe319312595c52.bindPopup(popup_eb45e322ce8d45009e7446430490f0d3);
var marker_1fcb00559b854fa3aa4ce4b10c59c472 = L.marker(
[2.066667,45.366667],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_28db0ccca15648c9ac809c88aaab3742 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_1fcb00559b854fa3aa4ce4b10c59c472.setIcon(icon_28db0ccca15648c9ac809c88aaab3742);
var popup_6d3aecf5dbd1410a923528a954bd4659 = L.popup({maxWidth: '300'});
var html_7367231baa4c4a9ea01ee5cda0e5d7bd = $('<div id="html_7367231baa4c4a9ea01ee5cda0e5d7bd" style="width: 100.0%; height: 100.0%;"><h5>Somalia:Government</h5><hr><b>Time period:</b> 2008-2016<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>6187</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>5357</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>7207</td> </tr> <tr> <td>Civilian casualties:</td> <td>1803</td> </tr> <tr> <td>Other casualties:</td> <td>2945</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Somalia</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Somalia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>867</td> </tr> </table><br><b>Side B: Al-Shabaab</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>572</td> </tr> </table></div>')[0];
popup_6d3aecf5dbd1410a923528a954bd4659.setContent(html_7367231baa4c4a9ea01ee5cda0e5d7bd);
marker_1fcb00559b854fa3aa4ce4b10c59c472.bindPopup(popup_6d3aecf5dbd1410a923528a954bd4659);
var marker_8071b12ff52b4065b16dcd6b0e0bbb36 = L.marker(
[34.531094,69.162796],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_b9895c2fab4d4ce681c8082c97d5d633 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_8071b12ff52b4065b16dcd6b0e0bbb36.setIcon(icon_b9895c2fab4d4ce681c8082c97d5d633);
var popup_141294ab534f4733ac7e55ba73f470d7 = L.popup({maxWidth: '300'});
var html_807177ff0f3c46f7b4c3b87fe0c9ae47 = $('<div id="html_807177ff0f3c46f7b4c3b87fe0c9ae47" style="width: 100.0%; height: 100.0%;"><h5>Afghanistan:Government</h5><hr><b>Time period:</b> 1990-2013<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>6159</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>6142</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>10879</td> </tr> <tr> <td>Civilian casualties:</td> <td>1712</td> </tr> <tr> <td>Other casualties:</td> <td>4252</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Afghanistan</td> </tr> <tr> <td>Battle region:</td> <td>Asia</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Afghanistan</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>70</td> </tr> </table><br><b>Side B: Hizb-i Islami-yi Afghanistan (Islamic Party of Afghanistan)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>125</td> </tr> </table></div>')[0];
popup_141294ab534f4733ac7e55ba73f470d7.setContent(html_807177ff0f3c46f7b4c3b87fe0c9ae47);
marker_8071b12ff52b4065b16dcd6b0e0bbb36.bindPopup(popup_141294ab534f4733ac7e55ba73f470d7);
var marker_db2808acbd984da8b0c9d97cac46b3d7 = L.marker(
[30.91667,75.41667],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_c4c565ce30d74f1b95c543de2e760289 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_db2808acbd984da8b0c9d97cac46b3d7.setIcon(icon_c4c565ce30d74f1b95c543de2e760289);
var popup_28fedeff636b40228fff24fca4a84607 = L.popup({maxWidth: '300'});
var html_5b7c953e6aab42e0a247f52dbcb32e7f = $('<div id="html_5b7c953e6aab42e0a247f52dbcb32e7f" style="width: 100.0%; height: 100.0%;"><h5>India:Punjab/Khalistan</h5><hr><b>Time period:</b> 1989-1993<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>5779</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>5779</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>5939</td> </tr> <tr> <td>Civilian casualties:</td> <td>4</td> </tr> <tr> <td>Other casualties:</td> <td>33</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>India</td> </tr> <tr> <td>Battle region:</td> <td>Asia</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of India</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>1133</td> </tr> </table><br><b>Side B: Sikh insurgents</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>4609</td> </tr> </table></div>')[0];
popup_28fedeff636b40228fff24fca4a84607.setContent(html_5b7c953e6aab42e0a247f52dbcb32e7f);
marker_db2808acbd984da8b0c9d97cac46b3d7.bindPopup(popup_28fedeff636b40228fff24fca4a84607);
var marker_bb019f12559b4dfda1deb69e888bfe4c = L.marker(
[11.85,38.01667],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_d8e49564491d4977a5e6f7bb87f0c282 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_bb019f12559b4dfda1deb69e888bfe4c.setIcon(icon_d8e49564491d4977a5e6f7bb87f0c282);
var popup_44069469a6f641f193fc329a174e1bf5 = L.popup({maxWidth: '300'});
var html_8f9b4f1217f043dbb4c21270d50bea88 = $('<div id="html_8f9b4f1217f043dbb4c21270d50bea88" style="width: 100.0%; height: 100.0%;"><h5>Ethiopia:Government</h5><hr><b>Time period:</b> 1989-1991<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>5729</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>5729</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>5729</td> </tr> <tr> <td>Civilian casualties:</td> <td>2</td> </tr> <tr> <td>Other casualties:</td> <td>15</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Ethiopia</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of Ethiopia</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>5712</td> </tr> </table><br><b>Side B: EPRDF (Ethiopian People’s Revolutionary Democratic Front)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_44069469a6f641f193fc329a174e1bf5.setContent(html_8f9b4f1217f043dbb4c21270d50bea88);
marker_bb019f12559b4dfda1deb69e888bfe4c.bindPopup(popup_44069469a6f641f193fc329a174e1bf5);
var marker_f51f6e0eff394e45a3d2390452c5c2b9 = L.marker(
[-2.7428,29.6019],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_25e592baca644a2aa9e741ce3e0793c3 = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_f51f6e0eff394e45a3d2390452c5c2b9.setIcon(icon_25e592baca644a2aa9e741ce3e0793c3);
var popup_2f3cd13f234443f4942e9f269ec6a8eb = L.popup({maxWidth: '300'});
var html_e7091c846f5849cfafc71e6f46465dda = $('<div id="html_e7091c846f5849cfafc71e6f46465dda" style="width: 100.0%; height: 100.0%;"><h5>Government of Rwanda - Civilians</h5><hr><b>Time period:</b> 1994<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>5500</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>5500</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>15000</td> </tr> <tr> <td>Civilian casualties:</td> <td>5500</td> </tr> <tr> <td>Other casualties:</td> <td>0</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Rwanda</td> </tr> <tr> <td>Battle region:</td> <td>Africa</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: Government of Rwanda</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_2f3cd13f234443f4942e9f269ec6a8eb.setContent(html_e7091c846f5849cfafc71e6f46465dda);
marker_f51f6e0eff394e45a3d2390452c5c2b9.bindPopup(popup_2f3cd13f234443f4942e9f269ec6a8eb);
var marker_53a87d8d2dd2402f8cf9858ce1060d66 = L.marker(
[13.8333,-88.9167],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_067a77a90a3440868ec9a702bda3b35a = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_53a87d8d2dd2402f8cf9858ce1060d66.setIcon(icon_067a77a90a3440868ec9a702bda3b35a);
var popup_d7cc20691200443488a72c80327820d0 = L.popup({maxWidth: '300'});
var html_7d1e90621da840e4b0fe6e3a6bed1521 = $('<div id="html_7d1e90621da840e4b0fe6e3a6bed1521" style="width: 100.0%; height: 100.0%;"><h5>El Salvador:Government</h5><hr><b>Time period:</b> 1989-1992<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>5104</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>5104</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>5208</td> </tr> <tr> <td>Civilian casualties:</td> <td>84</td> </tr> <tr> <td>Other casualties:</td> <td>387</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>El Salvador</td> </tr> <tr> <td>Battle region:</td> <td>Americas</td> </tr> <tr> <td>Type of violence:</td> <td>state-based</td> </tr> </table><br><b>Side A: Government of El Salvador</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>988</td> </tr> </table><br><b>Side B: FMLN (Farabundo Marti Front for National Liberation)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>3645</td> </tr> </table></div>')[0];
popup_d7cc20691200443488a72c80327820d0.setContent(html_7d1e90621da840e4b0fe6e3a6bed1521);
marker_53a87d8d2dd2402f8cf9858ce1060d66.bindPopup(popup_d7cc20691200443488a72c80327820d0);
var marker_6287939ab82549c786a63045a8b9e2bb = L.marker(
[33.340582,44.400876000000004],
{
icon: new L.Icon.Default()
}
)
.addTo(marker_cluster_b27ccec8821e4fd884b0a7aaa6d2feda);
var icon_53b9d37aa55c475ab1650f7731a040bf = L.AwesomeMarkers.icon({
icon: 'male',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_6287939ab82549c786a63045a8b9e2bb.setIcon(icon_53b9d37aa55c475ab1650f7731a040bf);
var popup_7726f85e0745415bbbf77561a4d8d150 = L.popup({maxWidth: '300'});
var html_76a3fa4155d4444cad7ad836007ed1e1 = $('<div id="html_76a3fa4155d4444cad7ad836007ed1e1" style="width: 100.0%; height: 100.0%;"><h5>IS - Civilians</h5><hr><b>Time period:</b> 2004-2016<br><br><table style="width:100%"> <tr> <td>Best estimate on the casualties: </td> <td>5089</td> </tr> <tr> <td>Low estimate on the casualties: </td> <td>4933</td> </tr> <tr> <td>High estimate on the casualties: </td> <td>5191</td> </tr> <tr> <td>Civilian casualties:</td> <td>3852</td> </tr> <tr> <td>Other casualties:</td> <td>1237</td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td>Battle location:</td> <td>Iraq</td> </tr> <tr> <td>Battle region:</td> <td>Middle East</td> </tr> <tr> <td>Type of violence:</td> <td>one-sided</td> </tr> </table><br><b>Side A: IS (The Monotheism and Jihad Group)</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table><br><b>Side B: Civilians</b><table style="width:100%"> <tr> <td>Suffered casualties:</td> <td>0</td> </tr> </table></div>')[0];
popup_7726f85e0745415bbbf77561a4d8d150.setContent(html_76a3fa4155d4444cad7ad836007ed1e1);
marker_6287939ab82549c786a63045a8b9e2bb.bindPopup(popup_7726f85e0745415bbbf77561a4d8d150);
var marker_94646252bda242fb934d3d0ccd9b75b8 = L.marker(
[-2.187778,30.748889000000002],