├── .babelrc ├── src ├── style.css └── script.js ├── .gitignore ├── README.md ├── index.html ├── package.json ├── gulpfile.js └── data └── wars.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | #world { 2 | height: 800px; 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | dist 4 | data/ne_50m_admin_0_countries_wo_antarctica.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Boots On The Ground 2 | 3 | ## Sources 4 | 5 | - Map from http://www.naturalearthdata.com/downloads/10m-cultural-vectors/ 6 | - Generated using https://github.com/melalj/topojson-map-generator 7 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Boots On The Ground 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "boots-on-the-ground", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "script.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/callumacrae/boots-on-the-ground.git" 12 | }, 13 | "author": "Callum Macrae ", 14 | "license": "MIT", 15 | "bugs": { 16 | "url": "https://github.com/callumacrae/boots-on-the-ground/issues" 17 | }, 18 | "homepage": "https://github.com/callumacrae/boots-on-the-ground#readme", 19 | "dependencies": { 20 | "cheerio": "^0.22.0", 21 | "chroma-js": "^1.2.1", 22 | "got": "^6.5.0", 23 | "gulp-sourcemaps": "^2.1.1", 24 | "leaflet": "^1.0.1", 25 | "topojson": "^1.6.27", 26 | "vinyl-buffer": "^1.0.0", 27 | "vinyl-source-stream": "^1.1.0" 28 | }, 29 | "devDependencies": { 30 | "babel-preset-es2015": "^6.16.0", 31 | "babelify": "^7.3.0", 32 | "browser-sync": "^2.17.3", 33 | "browserify": "^13.1.0", 34 | "gulp": "github:gulpjs/gulp#4.0", 35 | "gulp-load-plugins": "^1.3.0", 36 | "stream-from-promise": "^1.0.0" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/script.js: -------------------------------------------------------------------------------- 1 | import chroma from 'chroma-js'; 2 | import L from 'leaflet'; 3 | import * as topojson from 'topojson'; 4 | 5 | const mapDataRequest = fetch('data/ne_50m_admin_0_countries_wo_antarctica.json') 6 | .then((res) => res.json()); 7 | 8 | const warDataRequest = fetch('data/wars.json') 9 | .then((res) => res.json()); 10 | 11 | Promise.all([ mapDataRequest, warDataRequest ]) 12 | .then(function ([ mapData, warData ]) { 13 | 14 | const colorScale = chroma 15 | .scale(['#ffd8d8', '#ff6464']) 16 | .domain([0, 2000000]); 17 | 18 | const map = L.map('world').setView([45, 0], 2); 19 | const topoLayer = new L.GeoJSON(undefined, { 20 | style: { 21 | fillColor: 'white', 22 | fillOpacity: 1, 23 | color: 'black', 24 | weight: 1, 25 | opacity: 0.1 26 | } 27 | }); 28 | 29 | for (const key of Object.keys(mapData.objects)) { 30 | const geojson = topojson.feature(mapData, mapData.objects[key]); 31 | topoLayer.addData(geojson); 32 | } 33 | 34 | // Find world war II 35 | const ww2 = warData.find(({ name }) => name === 'World War II'); 36 | 37 | topoLayer.eachLayer(function (layer) { 38 | layer.setStyle({ 39 | fillColor: colorScale(ww2.deaths_in[layer.feature.id]) 40 | }); 41 | 42 | 43 | const inWars = warData.filter(function (war) { 44 | return war.nations.find(function (nation) { 45 | return nation.code === layer.feature.id; 46 | }); 47 | }); 48 | 49 | const countriesAffected = {}; 50 | 51 | inWars.forEach(function (war) { 52 | war.nations.forEach(function (nation) { 53 | // Don't include self 54 | if (nation.code === layer.feature.id) { 55 | return; 56 | } 57 | 58 | if (!countriesAffected[nation.code]) { 59 | countriesAffected[nation.code] = 0; 60 | } 61 | 62 | countriesAffected[nation.code] += war.deaths; 63 | }); 64 | }); 65 | 66 | layer.on({ 67 | mouseover() { 68 | layer.setStyle({ 69 | fillColor: '#a2a2ff' 70 | }); 71 | 72 | eachLayerWithIds(Object.keys(countriesAffected), function (layer, id) { 73 | layer.setStyle({ 74 | fillColor: colorScale(countriesAffected[id]) 75 | }); 76 | }); 77 | }, 78 | mouseout(e) { 79 | topoLayer.resetStyle(e.target); 80 | 81 | eachLayerWithIds(Object.keys(countriesAffected), function (layer) { 82 | topoLayer.resetStyle(layer); 83 | }); 84 | } 85 | }); 86 | }); 87 | 88 | topoLayer.addTo(map); 89 | 90 | function eachLayerWithIds(ids, cb) { 91 | topoLayer.eachLayer(function (layer) { 92 | if (ids.includes(layer.feature.id)) { 93 | cb(layer, layer.feature.id); 94 | } 95 | }); 96 | } 97 | }); -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | const gulp = require('gulp'); 2 | const plugins = require('gulp-load-plugins')(); 3 | 4 | const browserSync = require('browser-sync').create(); 5 | 6 | const browserify = require('browserify'); 7 | const babelify = require('babelify'); 8 | const source = require('vinyl-source-stream'); 9 | const buffer = require('vinyl-buffer'); 10 | 11 | const got = require('got'); 12 | const cheerio = require('cheerio'); 13 | const streamFromPromise = require('stream-from-promise'); 14 | 15 | gulp.task('js', function () { 16 | const bundler = browserify({ 17 | entries: './src/script.js', 18 | transform: [ babelify ] 19 | }); 20 | 21 | return bundler.bundle() 22 | .pipe(source('bundle.js')) 23 | .pipe(buffer()) 24 | .pipe(plugins.sourcemaps.init({ loadMaps: true })) 25 | .pipe(plugins.sourcemaps.write('./')) 26 | .pipe(gulp.dest('./dist')) 27 | .on('end', browserSync.reload); 28 | }); 29 | 30 | gulp.task('war-data', function () { 31 | const promise = got('http://www.war-memorial.net/wars_all.asp') 32 | .then(function (res) { 33 | const $ = cheerio.load(res.body); 34 | 35 | const links = $('.maincol a[title="More about this war."]'); 36 | const linkHrefs = links.map(function () { 37 | return $(this).attr('href'); 38 | }); 39 | 40 | return linkHrefs.get(); 41 | }) 42 | .then(function (links) { 43 | return links.reduce(function (promiseChain, link) { 44 | return promiseChain.then(function (wars) { 45 | console.log(`Downloading ${link}`); 46 | 47 | return got(`http://www.war-memorial.net/${link}`) 48 | .then(function (res) { 49 | const $ = cheerio.load(res.body); 50 | 51 | const war = { 52 | name: $('.rub1').text() 53 | }; 54 | 55 | const warSummary = $('.factbox').first().text(); 56 | 57 | const years = /Years: (\d{4})\-(\d{4})/.exec(warSummary); 58 | if (years) { 59 | war.years = { 60 | start: Number(years[1]), 61 | end: Number(years[2]) 62 | }; 63 | } 64 | 65 | const deaths = /Battle deaths: ([\d,]+)/.exec(warSummary); 66 | if (deaths) { 67 | war.deaths = Number(deaths[1].replace(/,/g, '')); 68 | } 69 | 70 | const nations = $('.factbox a[title="Other wars for this nation"]'); 71 | war.nations = nations.map(function () { 72 | return { 73 | code: /land=([A-Z]{2})&/.exec($(this).attr('href'))[1], 74 | name: $(this).text() 75 | }; 76 | }).get(); 77 | 78 | wars.push(war); 79 | 80 | return wars; 81 | }) 82 | .then(function (...args) { 83 | // Add a little delay so we don't hurt anyone 84 | return new Promise(function (resolve) { 85 | setTimeout(() => resolve(...args), 200); 86 | }); 87 | }); 88 | }); 89 | }, Promise.resolve([])); 90 | }) 91 | .then(function (wars) { 92 | return JSON.stringify(wars, null, 2); 93 | }); 94 | 95 | return streamFromPromise(promise) 96 | .pipe(source('wars.json')) 97 | .pipe(buffer()) 98 | .pipe(gulp.dest('./data')); 99 | }); 100 | 101 | gulp.task('default', gulp.parallel('js')); 102 | 103 | if (process.argv.indexOf('--watch') !== -1) { 104 | gulp.watch('./src/**/*.js', gulp.series('js')); 105 | 106 | browserSync.init({ 107 | server: '.' 108 | }); 109 | } -------------------------------------------------------------------------------- /data/wars.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Eastern Ukraine War", 4 | "years": { 5 | "start": 2014, 6 | "end": 2015 7 | }, 8 | "deaths": 4353, 9 | "nations": [ 10 | { 11 | "code": "UA", 12 | "name": "Ukraine" 13 | }, 14 | { 15 | "code": "RU", 16 | "name": "Russia" 17 | } 18 | ] 19 | }, 20 | { 21 | "name": "Syrian civil war", 22 | "years": { 23 | "start": 2011, 24 | "end": 2015 25 | }, 26 | "deaths": 119017, 27 | "nations": [ 28 | { 29 | "code": "SY", 30 | "name": "Syria" 31 | } 32 | ] 33 | }, 34 | { 35 | "name": "South Sudan Civil War", 36 | "years": { 37 | "start": 2011, 38 | "end": 2015 39 | }, 40 | "deaths": 2940, 41 | "nations": [ 42 | { 43 | "code": "SS", 44 | "name": "South Sudan" 45 | } 46 | ] 47 | }, 48 | { 49 | "name": "Libyan Civil War", 50 | "years": { 51 | "start": 2011, 52 | "end": 2015 53 | }, 54 | "deaths": 2252, 55 | "nations": [ 56 | { 57 | "code": "LY", 58 | "name": "Libya" 59 | } 60 | ] 61 | }, 62 | { 63 | "name": "Nigerian Govt vs Boko Haram", 64 | "years": { 65 | "start": 2009, 66 | "end": 2015 67 | }, 68 | "deaths": 7791, 69 | "nations": [ 70 | { 71 | "code": "NG", 72 | "name": "Nigeria" 73 | } 74 | ] 75 | }, 76 | { 77 | "name": "Yemeni Civil War", 78 | "years": { 79 | "start": 2009, 80 | "end": 2015 81 | }, 82 | "deaths": 5981, 83 | "nations": [ 84 | { 85 | "code": "YE", 86 | "name": "Yemen" 87 | }, 88 | { 89 | "code": "US", 90 | "name": "United States" 91 | }, 92 | { 93 | "code": "SA", 94 | "name": "Saudi Arabia" 95 | } 96 | ] 97 | }, 98 | { 99 | "name": "Waziristan conflict", 100 | "years": { 101 | "start": 2007, 102 | "end": 2015 103 | }, 104 | "deaths": 25469, 105 | "nations": [ 106 | { 107 | "code": "PK", 108 | "name": "Pakistan" 109 | }, 110 | { 111 | "code": "AF", 112 | "name": "Afghanistan" 113 | } 114 | ] 115 | }, 116 | { 117 | "name": "Mexican Drug War", 118 | "years": { 119 | "start": 2006, 120 | "end": 2015 121 | }, 122 | "nations": [ 123 | { 124 | "code": "MX", 125 | "name": "Mexico" 126 | } 127 | ] 128 | }, 129 | { 130 | "name": "Iraqi Insurgency", 131 | "years": { 132 | "start": 2004, 133 | "end": 2015 134 | }, 135 | "deaths": 32908, 136 | "nations": [ 137 | { 138 | "code": "IQ", 139 | "name": "Iraq" 140 | }, 141 | { 142 | "code": "US", 143 | "name": "United States" 144 | }, 145 | { 146 | "code": "GB", 147 | "name": "United Kingdom" 148 | }, 149 | { 150 | "code": "AU", 151 | "name": "Australia" 152 | }, 153 | { 154 | "code": "KR", 155 | "name": "South Korea" 156 | } 157 | ] 158 | }, 159 | { 160 | "name": "Afghanistan war", 161 | "years": { 162 | "start": 2001, 163 | "end": 2015 164 | }, 165 | "deaths": 70581, 166 | "nations": [ 167 | { 168 | "code": "AF", 169 | "name": "Afghanistan" 170 | }, 171 | { 172 | "code": "US", 173 | "name": "United States" 174 | }, 175 | { 176 | "code": "GB", 177 | "name": "United Kingdom" 178 | }, 179 | { 180 | "code": "AL", 181 | "name": "Albania" 182 | }, 183 | { 184 | "code": "AE", 185 | "name": "United Arab Emirates" 186 | }, 187 | { 188 | "code": "UA", 189 | "name": "Ukraine" 190 | }, 191 | { 192 | "code": "TR", 193 | "name": "Turkey" 194 | }, 195 | { 196 | "code": "TO", 197 | "name": "Tonga" 198 | }, 199 | { 200 | "code": "SE", 201 | "name": "Sweden" 202 | }, 203 | { 204 | "code": "ES", 205 | "name": "Spain" 206 | }, 207 | { 208 | "code": "SI", 209 | "name": "Slovenia" 210 | }, 211 | { 212 | "code": "SK", 213 | "name": "Slovakia" 214 | }, 215 | { 216 | "code": "SG", 217 | "name": "Singapore" 218 | }, 219 | { 220 | "code": "RO", 221 | "name": "Romania" 222 | }, 223 | { 224 | "code": "PT", 225 | "name": "Portugal" 226 | }, 227 | { 228 | "code": "PL", 229 | "name": "Poland" 230 | }, 231 | { 232 | "code": "NO", 233 | "name": "Norway" 234 | }, 235 | { 236 | "code": "NZ", 237 | "name": "New Zealand" 238 | }, 239 | { 240 | "code": "NL", 241 | "name": "Netherlands" 242 | }, 243 | { 244 | "code": "ME", 245 | "name": "Montenegro" 246 | }, 247 | { 248 | "code": "MN", 249 | "name": "Mongolia" 250 | }, 251 | { 252 | "code": "MY", 253 | "name": "Malaysia" 254 | }, 255 | { 256 | "code": "LU", 257 | "name": "Luxembourg" 258 | }, 259 | { 260 | "code": "LT", 261 | "name": "Lithuania" 262 | }, 263 | { 264 | "code": "LV", 265 | "name": "Latvia" 266 | }, 267 | { 268 | "code": "KR", 269 | "name": "South Korea" 270 | }, 271 | { 272 | "code": "IT", 273 | "name": "Italy" 274 | }, 275 | { 276 | "code": "IE", 277 | "name": "Ireland" 278 | }, 279 | { 280 | "code": "IS", 281 | "name": "Iceland" 282 | }, 283 | { 284 | "code": "HU", 285 | "name": "Hungary" 286 | }, 287 | { 288 | "code": "GR", 289 | "name": "Greece" 290 | }, 291 | { 292 | "code": "DE", 293 | "name": "Germany" 294 | }, 295 | { 296 | "code": "GE", 297 | "name": "Georgia" 298 | }, 299 | { 300 | "code": "FR", 301 | "name": "France" 302 | }, 303 | { 304 | "code": "MK", 305 | "name": "Macedonia" 306 | }, 307 | { 308 | "code": "FI", 309 | "name": "Finland" 310 | }, 311 | { 312 | "code": "EE", 313 | "name": "Estonia" 314 | }, 315 | { 316 | "code": "SV", 317 | "name": "El Salvador" 318 | }, 319 | { 320 | "code": "DK", 321 | "name": "Denmark" 322 | }, 323 | { 324 | "code": "CZ", 325 | "name": "Czech Republic" 326 | }, 327 | { 328 | "code": "HR", 329 | "name": "Croatia" 330 | }, 331 | { 332 | "code": "CA", 333 | "name": "Canada" 334 | }, 335 | { 336 | "code": "BG", 337 | "name": "Bulgaria" 338 | }, 339 | { 340 | "code": "BA", 341 | "name": "Bosnia and Herzegovina" 342 | }, 343 | { 344 | "code": "BE", 345 | "name": "Belgium" 346 | }, 347 | { 348 | "code": "AZ", 349 | "name": "Azerbaijan" 350 | }, 351 | { 352 | "code": "AT", 353 | "name": "Austria" 354 | }, 355 | { 356 | "code": "AU", 357 | "name": "Australia" 358 | }, 359 | { 360 | "code": "AM", 361 | "name": "Armenia" 362 | }, 363 | { 364 | "code": "BH", 365 | "name": "Bahrain" 366 | } 367 | ] 368 | }, 369 | { 370 | "name": "Turkey Gov vs Kurdistan Guerilla (PPK) ", 371 | "years": { 372 | "start": 1984, 373 | "end": 2015 374 | }, 375 | "deaths": 27450, 376 | "nations": [ 377 | { 378 | "code": "TR", 379 | "name": "Turkey" 380 | } 381 | ] 382 | }, 383 | { 384 | "name": "Sudan Government vs Militias", 385 | "years": { 386 | "start": 1983, 387 | "end": 2015 388 | }, 389 | "deaths": 71060, 390 | "nations": [ 391 | { 392 | "code": "SD", 393 | "name": "Sudan" 394 | } 395 | ] 396 | }, 397 | { 398 | "name": "Somalia Civil War", 399 | "years": { 400 | "start": 1982, 401 | "end": 2015 402 | }, 403 | "deaths": 38885, 404 | "nations": [ 405 | { 406 | "code": "SO", 407 | "name": "Somalia" 408 | } 409 | ] 410 | }, 411 | { 412 | "name": "Russia vs Chechnyan Secessionists and the Caucasus Emirate", 413 | "years": { 414 | "start": 1994, 415 | "end": 2014 416 | }, 417 | "deaths": 20512, 418 | "nations": [ 419 | { 420 | "code": "RU", 421 | "name": "Russia" 422 | } 423 | ] 424 | }, 425 | { 426 | "name": "Algeria Govt vs Islamic rebels, GIA, AIS, AQIM ", 427 | "years": { 428 | "start": 1991, 429 | "end": 2014 430 | }, 431 | "deaths": 18592, 432 | "nations": [ 433 | { 434 | "code": "DZ", 435 | "name": "Algeria" 436 | } 437 | ] 438 | }, 439 | { 440 | "name": "Indian Govt vs Maoist Guerillas", 441 | "years": { 442 | "start": 1991, 443 | "end": 2014 444 | }, 445 | "deaths": 5354, 446 | "nations": [ 447 | { 448 | "code": "IN", 449 | "name": "India" 450 | } 451 | ] 452 | }, 453 | { 454 | "name": "Northern Mali Conflict", 455 | "years": { 456 | "start": 1990, 457 | "end": 2014 458 | }, 459 | "deaths": 1813, 460 | "nations": [ 461 | { 462 | "code": "ML", 463 | "name": "Mali" 464 | } 465 | ] 466 | }, 467 | { 468 | "name": "Nagorno-Karabakh War ", 469 | "years": { 470 | "start": 1990, 471 | "end": 2014 472 | }, 473 | "deaths": 5133, 474 | "nations": [ 475 | { 476 | "code": "AZ", 477 | "name": "Azerbaijan" 478 | }, 479 | { 480 | "code": "AM", 481 | "name": "Armenia" 482 | }, 483 | { 484 | "code": "SJ", 485 | "name": "Soviet Union" 486 | } 487 | ] 488 | }, 489 | { 490 | "name": "Indian-Pakistani Dispute and Intrastate Insurgency in Kashmir", 491 | "years": { 492 | "start": 1984, 493 | "end": 2014 494 | }, 495 | "deaths": 18486, 496 | "nations": [ 497 | { 498 | "code": "IN", 499 | "name": "India" 500 | }, 501 | { 502 | "code": "PK", 503 | "name": "Pakistan" 504 | } 505 | ] 506 | }, 507 | { 508 | "name": "Ethiopian Govt vs Ogadeni Rebels - WSLF/ONLF/AIAI", 509 | "years": { 510 | "start": 1976, 511 | "end": 2014 512 | }, 513 | "deaths": 22508, 514 | "nations": [ 515 | { 516 | "code": "ET", 517 | "name": "Ethiopia" 518 | }, 519 | { 520 | "code": "SO", 521 | "name": "Somalia" 522 | }, 523 | { 524 | "code": "CU", 525 | "name": "Cuba" 526 | } 527 | ] 528 | }, 529 | { 530 | "name": "Philippines Govt vs Mindanao Guerillas", 531 | "years": { 532 | "start": 1970, 533 | "end": 2014 534 | }, 535 | "deaths": 17095, 536 | "nations": [ 537 | { 538 | "code": "PH", 539 | "name": "Philippines" 540 | } 541 | ] 542 | }, 543 | { 544 | "name": "Philippine Government vs CPP Guerrilla", 545 | "years": { 546 | "start": 1969, 547 | "end": 2014 548 | }, 549 | "deaths": 24739, 550 | "nations": [ 551 | { 552 | "code": "PH", 553 | "name": "Philippines" 554 | } 555 | ] 556 | }, 557 | { 558 | "name": "Colombia Govt vs Guerillas Farc and ELN", 559 | "years": { 560 | "start": 1964, 561 | "end": 2014 562 | }, 563 | "deaths": 22160, 564 | "nations": [ 565 | { 566 | "code": "CO", 567 | "name": "Colombia" 568 | } 569 | ] 570 | }, 571 | { 572 | "name": "Burmese Government vs Separatist Guerillas", 573 | "years": { 574 | "start": 1949, 575 | "end": 2014 576 | }, 577 | "deaths": 47285, 578 | "nations": [ 579 | { 580 | "code": "MM", 581 | "name": "Myanmar (Burma)" 582 | } 583 | ] 584 | }, 585 | { 586 | "name": "Israel vs Palestine", 587 | "years": { 588 | "start": 1949, 589 | "end": 2014 590 | }, 591 | "deaths": 14246, 592 | "nations": [ 593 | { 594 | "code": "IL", 595 | "name": "Israel" 596 | }, 597 | { 598 | "code": "PS", 599 | "name": "Palestinian Authority" 600 | } 601 | ] 602 | }, 603 | { 604 | "name": "Sectarian Conflict in the Central African Republic", 605 | "years": { 606 | "start": 2012, 607 | "end": 2013 608 | }, 609 | "deaths": 360, 610 | "nations": [ 611 | { 612 | "code": "CF", 613 | "name": "Central African Republic" 614 | } 615 | ] 616 | }, 617 | { 618 | "name": "Lou Nuer vs Murle (Jonglei conflict)", 619 | "years": { 620 | "start": 2006, 621 | "end": 2013 622 | }, 623 | "nations": [ 624 | { 625 | "code": "SS", 626 | "name": "South Sudan" 627 | }, 628 | { 629 | "code": "SD", 630 | "name": "Sudan" 631 | } 632 | ] 633 | }, 634 | { 635 | "name": "Kivu Conflict", 636 | "years": { 637 | "start": 2006, 638 | "end": 2013 639 | }, 640 | "deaths": 5453, 641 | "nations": [ 642 | { 643 | "code": "CG", 644 | "name": "Democratic Republic of the Congo" 645 | }, 646 | { 647 | "code": "RW", 648 | "name": "Rwanda" 649 | } 650 | ] 651 | }, 652 | { 653 | "name": "al-Qaida vs USA and allies", 654 | "years": { 655 | "start": 2001, 656 | "end": 2013 657 | }, 658 | "deaths": 4392, 659 | "nations": [ 660 | { 661 | "code": "US", 662 | "name": "United States" 663 | }, 664 | { 665 | "code": "GB", 666 | "name": "United Kingdom" 667 | }, 668 | { 669 | "code": "SA", 670 | "name": "Saudi Arabia" 671 | }, 672 | { 673 | "code": "ES", 674 | "name": "Spain" 675 | }, 676 | { 677 | "code": "ID", 678 | "name": "Indonesia" 679 | } 680 | ] 681 | }, 682 | { 683 | "name": "Uganda Civil War ", 684 | "years": { 685 | "start": 1980, 686 | "end": 2013 687 | }, 688 | "deaths": 118894, 689 | "nations": [ 690 | { 691 | "code": "UG", 692 | "name": "Uganda" 693 | }, 694 | { 695 | "code": "TZ", 696 | "name": "Tanzania" 697 | }, 698 | { 699 | "code": "SD", 700 | "name": "Sudan" 701 | } 702 | ] 703 | }, 704 | { 705 | "name": "Mozambique Govt vs RENAMO and FRELIMO", 706 | "years": { 707 | "start": 1977, 708 | "end": 2013 709 | }, 710 | "deaths": 114488, 711 | "nations": [ 712 | { 713 | "code": "MZ", 714 | "name": "Mozambique" 715 | } 716 | ] 717 | }, 718 | { 719 | "name": "Ethiopia vs Oromia rebels (OLF)", 720 | "years": { 721 | "start": 1977, 722 | "end": 2013 723 | }, 724 | "deaths": 2320, 725 | "nations": [ 726 | { 727 | "code": "ET", 728 | "name": "Ethiopia" 729 | } 730 | ] 731 | }, 732 | { 733 | "name": "Tajikistan Govt vs Opposition", 734 | "years": { 735 | "start": 1992, 736 | "end": 2011 737 | }, 738 | "deaths": 9049, 739 | "nations": [ 740 | { 741 | "code": "TJ", 742 | "name": "Tajikistan" 743 | } 744 | ] 745 | }, 746 | { 747 | "name": "Senegal Civil War", 748 | "years": { 749 | "start": 1990, 750 | "end": 2011 751 | }, 752 | "deaths": 1373, 753 | "nations": [ 754 | { 755 | "code": "SN", 756 | "name": "Senegal" 757 | } 758 | ] 759 | }, 760 | { 761 | "name": "Iran vs rebel groups (MEK,PJAK etc)", 762 | "years": { 763 | "start": 1979, 764 | "end": 2011 765 | }, 766 | "deaths": 5015, 767 | "nations": [ 768 | { 769 | "code": "IR", 770 | "name": "Iran" 771 | } 772 | ] 773 | }, 774 | { 775 | "name": "Chad Civil War ", 776 | "years": { 777 | "start": 1966, 778 | "end": 2010 779 | }, 780 | "deaths": 34769, 781 | "nations": [ 782 | { 783 | "code": "TD", 784 | "name": "Chad" 785 | }, 786 | { 787 | "code": "FR", 788 | "name": "France" 789 | }, 790 | { 791 | "code": "LY", 792 | "name": "Libya" 793 | } 794 | ] 795 | }, 796 | { 797 | "name": "Peruvian Gvt vs Sendero Luminoso and MRTA ", 798 | "years": { 799 | "start": 1965, 800 | "end": 2010 801 | }, 802 | "deaths": 16536, 803 | "nations": [ 804 | { 805 | "code": "PE", 806 | "name": "Peru" 807 | } 808 | ] 809 | }, 810 | { 811 | "name": "Sri Lankan Govt vs Tamil Militants (LTTE)", 812 | "years": { 813 | "start": 1984, 814 | "end": 2009 815 | }, 816 | "deaths": 70766, 817 | "nations": [ 818 | { 819 | "code": "LK", 820 | "name": "Sri Lanka" 821 | }, 822 | { 823 | "code": "IN", 824 | "name": "India" 825 | } 826 | ] 827 | }, 828 | { 829 | "name": "Burundi Civil War", 830 | "years": { 831 | "start": 1991, 832 | "end": 2008 833 | }, 834 | "deaths": 8589, 835 | "nations": [ 836 | { 837 | "code": "BI", 838 | "name": "Burundi" 839 | } 840 | ] 841 | }, 842 | { 843 | "name": "Nepal Civil War", 844 | "years": { 845 | "start": 1996, 846 | "end": 2006 847 | }, 848 | "deaths": 9916, 849 | "nations": [ 850 | { 851 | "code": "NP", 852 | "name": "Nepal" 853 | } 854 | ] 855 | }, 856 | { 857 | "name": "Southern Lebanon War", 858 | "years": { 859 | "start": 1990, 860 | "end": 2006 861 | }, 862 | "deaths": 1530, 863 | "nations": [ 864 | { 865 | "code": "IL", 866 | "name": "Israel" 867 | }, 868 | { 869 | "code": "LB", 870 | "name": "Lebanon" 871 | } 872 | ] 873 | }, 874 | { 875 | "name": "Indonesia Gvt vs Aceh Liberation movement ", 876 | "years": { 877 | "start": 1990, 878 | "end": 2005 879 | }, 880 | "deaths": 2768, 881 | "nations": [ 882 | { 883 | "code": "ID", 884 | "name": "Indonesia" 885 | } 886 | ] 887 | }, 888 | { 889 | "name": "Civil War in C�te d Ivoire ", 890 | "years": { 891 | "start": 2002, 892 | "end": 2004 893 | }, 894 | "deaths": 810, 895 | "nations": [ 896 | { 897 | "code": "CI", 898 | "name": "Cote d'Ivoire" 899 | } 900 | ] 901 | }, 902 | { 903 | "name": "Ituri Conflict", 904 | "years": { 905 | "start": 1999, 906 | "end": 2004 907 | }, 908 | "nations": [ 909 | { 910 | "code": "CG", 911 | "name": "Democratic Republic of the Congo" 912 | } 913 | ] 914 | }, 915 | { 916 | "name": "Iraq vs US led coalition", 917 | "years": { 918 | "start": 2003, 919 | "end": 2003 920 | }, 921 | "deaths": 7927, 922 | "nations": [ 923 | { 924 | "code": "IQ", 925 | "name": "Iraq" 926 | }, 927 | { 928 | "code": "US", 929 | "name": "United States" 930 | }, 931 | { 932 | "code": "GB", 933 | "name": "United Kingdom" 934 | }, 935 | { 936 | "code": "AT", 937 | "name": "Austria" 938 | }, 939 | { 940 | "code": "PL", 941 | "name": "Poland" 942 | } 943 | ] 944 | }, 945 | { 946 | "name": "First and Second Congo Wars", 947 | "years": { 948 | "start": 1996, 949 | "end": 2003 950 | }, 951 | "deaths": 18095, 952 | "nations": [ 953 | { 954 | "code": "CG", 955 | "name": "Democratic Republic of the Congo" 956 | }, 957 | { 958 | "code": "RW", 959 | "name": "Rwanda" 960 | }, 961 | { 962 | "code": "UG", 963 | "name": "Uganda" 964 | }, 965 | { 966 | "code": "AO", 967 | "name": "Angola" 968 | }, 969 | { 970 | "code": "ZW", 971 | "name": "Zimbabwe" 972 | }, 973 | { 974 | "code": "NA", 975 | "name": "Namibia" 976 | }, 977 | { 978 | "code": "TD", 979 | "name": "Chad" 980 | } 981 | ] 982 | }, 983 | { 984 | "name": "Liberia Civil War", 985 | "years": { 986 | "start": 1989, 987 | "end": 2003 988 | }, 989 | "deaths": 3051, 990 | "nations": [ 991 | { 992 | "code": "LR", 993 | "name": "Liberia" 994 | } 995 | ] 996 | }, 997 | { 998 | "name": "Congo Brazzaville Civil War", 999 | "years": { 1000 | "start": 1993, 1001 | "end": 2002 1002 | }, 1003 | "deaths": 14176, 1004 | "nations": [ 1005 | { 1006 | "code": "CG", 1007 | "name": "Congo" 1008 | }, 1009 | { 1010 | "code": "AO", 1011 | "name": "Angola" 1012 | } 1013 | ] 1014 | }, 1015 | { 1016 | "name": "Angolan Gvt vs UNITA Guerilla", 1017 | "years": { 1018 | "start": 1975, 1019 | "end": 2002 1020 | }, 1021 | "deaths": 112569, 1022 | "nations": [ 1023 | { 1024 | "code": "AO", 1025 | "name": "Angola" 1026 | }, 1027 | { 1028 | "code": "CU", 1029 | "name": "Cuba" 1030 | }, 1031 | { 1032 | "code": "NA", 1033 | "name": "Namibia" 1034 | }, 1035 | { 1036 | "code": "ZA", 1037 | "name": "South Africa" 1038 | }, 1039 | { 1040 | "code": "CG", 1041 | "name": "Democratic Republic of the Congo" 1042 | } 1043 | ] 1044 | }, 1045 | { 1046 | "name": "Sierra Leone Civil War", 1047 | "years": { 1048 | "start": 1991, 1049 | "end": 2001 1050 | }, 1051 | "deaths": 10577, 1052 | "nations": [ 1053 | { 1054 | "code": "SL", 1055 | "name": "Sierra Leone" 1056 | } 1057 | ] 1058 | }, 1059 | { 1060 | "name": "Eritrea vs Ethiopia", 1061 | "years": { 1062 | "start": 2000, 1063 | "end": 2000 1064 | }, 1065 | "deaths": 98192, 1066 | "nations": [ 1067 | { 1068 | "code": "ER", 1069 | "name": "Eritrea" 1070 | }, 1071 | { 1072 | "code": "ET", 1073 | "name": "Ethiopia" 1074 | } 1075 | ] 1076 | }, 1077 | { 1078 | "name": "Afghanistan Civil War", 1079 | "years": { 1080 | "start": 1978, 1081 | "end": 2000 1082 | }, 1083 | "deaths": 538130, 1084 | "nations": [ 1085 | { 1086 | "code": "AF", 1087 | "name": "Afghanistan" 1088 | }, 1089 | { 1090 | "code": "SJ", 1091 | "name": "Soviet Union" 1092 | } 1093 | ] 1094 | }, 1095 | { 1096 | "name": "Yugoslavia vs NATO Forces and UCK Guerilla", 1097 | "years": { 1098 | "start": 1998, 1099 | "end": 1999 1100 | }, 1101 | "deaths": 2621, 1102 | "nations": [ 1103 | { 1104 | "code": "RS", 1105 | "name": "Serbia" 1106 | }, 1107 | { 1108 | "code": "-99", 1109 | "name": "Kosovo" 1110 | }, 1111 | { 1112 | "code": "YU", 1113 | "name": "Yugoslavia" 1114 | } 1115 | ] 1116 | }, 1117 | { 1118 | "name": "Indonesian Govt vs Fretilin - East Timor ", 1119 | "years": { 1120 | "start": 1975, 1121 | "end": 1999 1122 | }, 1123 | "deaths": 75146, 1124 | "nations": [ 1125 | { 1126 | "code": "ID", 1127 | "name": "Indonesia" 1128 | }, 1129 | { 1130 | "code": "TE", 1131 | "name": "East Timor" 1132 | } 1133 | ] 1134 | }, 1135 | { 1136 | "name": "Cambodian Govt vs Khmer Rouge", 1137 | "years": { 1138 | "start": 1979, 1139 | "end": 1998 1140 | }, 1141 | "deaths": 86812, 1142 | "nations": [ 1143 | { 1144 | "code": "KH", 1145 | "name": "Cambodia" 1146 | }, 1147 | { 1148 | "code": "idk? was VN", 1149 | "name": "" 1150 | } 1151 | ] 1152 | }, 1153 | { 1154 | "name": "Northern Ireland, The Troubles", 1155 | "years": { 1156 | "start": 1971, 1157 | "end": 1998 1158 | }, 1159 | "deaths": 2978, 1160 | "nations": [ 1161 | { 1162 | "code": "IE", 1163 | "name": "Ireland" 1164 | }, 1165 | { 1166 | "code": "GB", 1167 | "name": "United Kingdom" 1168 | } 1169 | ] 1170 | }, 1171 | { 1172 | "name": "Hunde and allies vs Hutu, Banyarwanda", 1173 | "years": { 1174 | "start": 1993, 1175 | "end": 1996 1176 | }, 1177 | "nations": [ 1178 | { 1179 | "code": "CG", 1180 | "name": "Democratic Republic of the Congo" 1181 | } 1182 | ] 1183 | }, 1184 | { 1185 | "name": "Iraq vs Kurdistan (KDP/PUK)", 1186 | "years": { 1187 | "start": 1982, 1188 | "end": 1996 1189 | }, 1190 | "deaths": 18682, 1191 | "nations": [ 1192 | { 1193 | "code": "IQ", 1194 | "name": "Iraq" 1195 | } 1196 | ] 1197 | }, 1198 | { 1199 | "name": "Iraq Government vs SCIRI", 1200 | "years": { 1201 | "start": 1982, 1202 | "end": 1996 1203 | }, 1204 | "deaths": 1165, 1205 | "nations": [ 1206 | { 1207 | "code": "IQ", 1208 | "name": "Iraq" 1209 | } 1210 | ] 1211 | }, 1212 | { 1213 | "name": "Iranian Govt vs KDPI ", 1214 | "years": { 1215 | "start": 1966, 1216 | "end": 1996 1217 | }, 1218 | "deaths": 2618, 1219 | "nations": [ 1220 | { 1221 | "code": "IR", 1222 | "name": "Iran" 1223 | } 1224 | ] 1225 | }, 1226 | { 1227 | "name": "Bosnian Govt vs Serbian and Croatian Insurgents ", 1228 | "years": { 1229 | "start": 1992, 1230 | "end": 1995 1231 | }, 1232 | "deaths": 16232, 1233 | "nations": [ 1234 | { 1235 | "code": "BA", 1236 | "name": "Bosnia and Herzegovina" 1237 | }, 1238 | { 1239 | "code": "RS", 1240 | "name": "Serbia" 1241 | } 1242 | ] 1243 | }, 1244 | { 1245 | "name": "Croatia vs Serbian Irregulars, Rep. Krajina", 1246 | "years": { 1247 | "start": 1992, 1248 | "end": 1995 1249 | }, 1250 | "deaths": 1329, 1251 | "nations": [ 1252 | { 1253 | "code": "RS", 1254 | "name": "Serbia" 1255 | }, 1256 | { 1257 | "code": "HR", 1258 | "name": "Croatia" 1259 | } 1260 | ] 1261 | }, 1262 | { 1263 | "name": "Guatemalan Civil War", 1264 | "years": { 1265 | "start": 1965, 1266 | "end": 1995 1267 | }, 1268 | "deaths": 43200, 1269 | "nations": [ 1270 | { 1271 | "code": "GT", 1272 | "name": "Guatemala" 1273 | } 1274 | ] 1275 | }, 1276 | { 1277 | "name": "North Yemen vs Secessionists ", 1278 | "years": { 1279 | "start": 1994, 1280 | "end": 1994 1281 | }, 1282 | "deaths": 1489, 1283 | "nations": [ 1284 | { 1285 | "code": "YE", 1286 | "name": "Yemen" 1287 | } 1288 | ] 1289 | }, 1290 | { 1291 | "name": "Rwanda Civil War (Hutus vs Tutsis) ", 1292 | "years": { 1293 | "start": 1990, 1294 | "end": 1994 1295 | }, 1296 | "deaths": 2773, 1297 | "nations": [ 1298 | { 1299 | "code": "RW", 1300 | "name": "Rwanda" 1301 | }, 1302 | { 1303 | "code": "BI", 1304 | "name": "Burundi" 1305 | }, 1306 | { 1307 | "code": "FR", 1308 | "name": "France" 1309 | }, 1310 | { 1311 | "code": "CG", 1312 | "name": "Democratic Republic of the Congo" 1313 | } 1314 | ] 1315 | }, 1316 | { 1317 | "name": "Burmese Govt vs Communist Guerillas ", 1318 | "years": { 1319 | "start": 1948, 1320 | "end": 1994 1321 | }, 1322 | "deaths": 17700, 1323 | "nations": [ 1324 | { 1325 | "code": "MM", 1326 | "name": "Myanmar (Burma)" 1327 | } 1328 | ] 1329 | }, 1330 | { 1331 | "name": "Georgian Civil War", 1332 | "years": { 1333 | "start": 1992, 1334 | "end": 1993 1335 | }, 1336 | "deaths": 2624, 1337 | "nations": [ 1338 | { 1339 | "code": "GE", 1340 | "name": "Georgia" 1341 | } 1342 | ] 1343 | }, 1344 | { 1345 | "name": "Indian Govt vs Sikh insurgents", 1346 | "years": { 1347 | "start": 1983, 1348 | "end": 1993 1349 | }, 1350 | "deaths": 13203, 1351 | "nations": [ 1352 | { 1353 | "code": "IN", 1354 | "name": "India" 1355 | } 1356 | ] 1357 | }, 1358 | { 1359 | "name": "Serbian Govt. vs Croatian irregulars", 1360 | "years": { 1361 | "start": 1991, 1362 | "end": 1991 1363 | }, 1364 | "deaths": 3933, 1365 | "nations": [ 1366 | { 1367 | "code": "RS", 1368 | "name": "Serbia" 1369 | } 1370 | ] 1371 | }, 1372 | { 1373 | "name": "First Gulf War", 1374 | "years": { 1375 | "start": 1990, 1376 | "end": 1991 1377 | }, 1378 | "deaths": 22848, 1379 | "nations": [ 1380 | { 1381 | "code": "US", 1382 | "name": "United States" 1383 | }, 1384 | { 1385 | "code": "IQ", 1386 | "name": "Iraq" 1387 | }, 1388 | { 1389 | "code": "GB", 1390 | "name": "United Kingdom" 1391 | }, 1392 | { 1393 | "code": "KW", 1394 | "name": "Kuwait" 1395 | }, 1396 | { 1397 | "code": "SA", 1398 | "name": "Saudi Arabia" 1399 | }, 1400 | { 1401 | "code": "PH", 1402 | "name": "Philippines" 1403 | }, 1404 | { 1405 | "code": "AR", 1406 | "name": "Argentina" 1407 | } 1408 | ] 1409 | }, 1410 | { 1411 | "name": "El Salvador Gvt vs FMLN Guerrillas", 1412 | "years": { 1413 | "start": 1979, 1414 | "end": 1991 1415 | }, 1416 | "deaths": 51561, 1417 | "nations": [ 1418 | { 1419 | "code": "SV", 1420 | "name": "El Salvador" 1421 | } 1422 | ] 1423 | }, 1424 | { 1425 | "name": "Ethiopian Government vs EPRDF", 1426 | "years": { 1427 | "start": 1976, 1428 | "end": 1991 1429 | }, 1430 | "deaths": 54908, 1431 | "nations": [ 1432 | { 1433 | "code": "ET", 1434 | "name": "Ethiopia" 1435 | } 1436 | ] 1437 | }, 1438 | { 1439 | "name": "Ethiopia vs Eritrean Separatists ELF/EPLF ", 1440 | "years": { 1441 | "start": 1964, 1442 | "end": 1991 1443 | }, 1444 | "deaths": 168510, 1445 | "nations": [ 1446 | { 1447 | "code": "ET", 1448 | "name": "Ethiopia" 1449 | }, 1450 | { 1451 | "code": "ER", 1452 | "name": "Eritrea" 1453 | } 1454 | ] 1455 | }, 1456 | { 1457 | "name": "Nicaragua Govt vs Contras ", 1458 | "years": { 1459 | "start": 1981, 1460 | "end": 1990 1461 | }, 1462 | "deaths": 29965, 1463 | "nations": [ 1464 | { 1465 | "code": "NI", 1466 | "name": "Nicaragua" 1467 | } 1468 | ] 1469 | }, 1470 | { 1471 | "name": "Lebanese Civil War ", 1472 | "years": { 1473 | "start": 1975, 1474 | "end": 1990 1475 | }, 1476 | "deaths": 131104, 1477 | "nations": [ 1478 | { 1479 | "code": "LB", 1480 | "name": "Lebanon" 1481 | }, 1482 | { 1483 | "code": "SY", 1484 | "name": "Syria" 1485 | }, 1486 | { 1487 | "code": "IL", 1488 | "name": "Israel" 1489 | }, 1490 | { 1491 | "code": "FR", 1492 | "name": "France" 1493 | }, 1494 | { 1495 | "code": "US", 1496 | "name": "United States" 1497 | } 1498 | ] 1499 | }, 1500 | { 1501 | "name": "Sri Lanka Govt vs JVP", 1502 | "years": { 1503 | "start": 1971, 1504 | "end": 1990 1505 | }, 1506 | "deaths": 1709, 1507 | "nations": [ 1508 | { 1509 | "code": "LK", 1510 | "name": "Sri Lanka" 1511 | } 1512 | ] 1513 | }, 1514 | { 1515 | "name": "Romanian Revolution", 1516 | "years": { 1517 | "start": 1989, 1518 | "end": 1989 1519 | }, 1520 | "deaths": 909, 1521 | "nations": [ 1522 | { 1523 | "code": "RO", 1524 | "name": "Romania" 1525 | } 1526 | ] 1527 | }, 1528 | { 1529 | "name": "Panama Coup and US Invasion", 1530 | "years": { 1531 | "start": 1989, 1532 | "end": 1989 1533 | }, 1534 | "deaths": 920, 1535 | "nations": [ 1536 | { 1537 | "code": "US", 1538 | "name": "United States" 1539 | }, 1540 | { 1541 | "code": "PA", 1542 | "name": "Panama" 1543 | } 1544 | ] 1545 | }, 1546 | { 1547 | "name": "Western Sahara War ", 1548 | "years": { 1549 | "start": 1975, 1550 | "end": 1989 1551 | }, 1552 | "deaths": 12687, 1553 | "nations": [ 1554 | { 1555 | "code": "MA", 1556 | "name": "Morocco" 1557 | }, 1558 | { 1559 | "code": "EH", 1560 | "name": "Western Sahara" 1561 | }, 1562 | { 1563 | "code": "MR", 1564 | "name": "Mauritania" 1565 | } 1566 | ] 1567 | }, 1568 | { 1569 | "name": "South Africa vs ANC", 1570 | "years": { 1571 | "start": 1981, 1572 | "end": 1988 1573 | }, 1574 | "deaths": 4087, 1575 | "nations": [ 1576 | { 1577 | "code": "ZA", 1578 | "name": "South Africa" 1579 | } 1580 | ] 1581 | }, 1582 | { 1583 | "name": "Iran vs Iraq", 1584 | "years": { 1585 | "start": 1980, 1586 | "end": 1988 1587 | }, 1588 | "deaths": 644500, 1589 | "nations": [ 1590 | { 1591 | "code": "IQ", 1592 | "name": "Iraq" 1593 | }, 1594 | { 1595 | "code": "IR", 1596 | "name": "Iran" 1597 | } 1598 | ] 1599 | }, 1600 | { 1601 | "name": "Sino-Vietnamese War ", 1602 | "years": { 1603 | "start": 1978, 1604 | "end": 1988 1605 | }, 1606 | "deaths": 47046, 1607 | "nations": [ 1608 | { 1609 | "code": "VN", 1610 | "name": "Vietnam" 1611 | }, 1612 | { 1613 | "code": "CN", 1614 | "name": "China" 1615 | } 1616 | ] 1617 | }, 1618 | { 1619 | "name": "Namibia vs South Africa", 1620 | "years": { 1621 | "start": 1966, 1622 | "end": 1988 1623 | }, 1624 | "deaths": 10000, 1625 | "nations": [ 1626 | { 1627 | "code": "NA", 1628 | "name": "Namibia" 1629 | }, 1630 | { 1631 | "code": "ZA", 1632 | "name": "South Africa" 1633 | } 1634 | ] 1635 | }, 1636 | { 1637 | "name": "Chadian-Lybian War (Aouzou Strip)", 1638 | "years": { 1639 | "start": 1987, 1640 | "end": 1987 1641 | }, 1642 | "deaths": 8500, 1643 | "nations": [ 1644 | { 1645 | "code": "LY", 1646 | "name": "Libya" 1647 | }, 1648 | { 1649 | "code": "TD", 1650 | "name": "Chad" 1651 | } 1652 | ] 1653 | }, 1654 | { 1655 | "name": "South Yemen Coup", 1656 | "years": { 1657 | "start": 1986, 1658 | "end": 1986 1659 | }, 1660 | "deaths": 10000, 1661 | "nations": [ 1662 | { 1663 | "code": "YE", 1664 | "name": "Yemen" 1665 | } 1666 | ] 1667 | }, 1668 | { 1669 | "name": "Falklands War", 1670 | "years": { 1671 | "start": 1982, 1672 | "end": 1982 1673 | }, 1674 | "deaths": 964, 1675 | "nations": [ 1676 | { 1677 | "code": "GB", 1678 | "name": "United Kingdom" 1679 | }, 1680 | { 1681 | "code": "AR", 1682 | "name": "Argentina" 1683 | }, 1684 | { 1685 | "code": "FK", 1686 | "name": "Islas Malvinas / Falkland Islands" 1687 | } 1688 | ] 1689 | }, 1690 | { 1691 | "name": "Syrian Govt vs Muslim Brotherhood", 1692 | "years": { 1693 | "start": 1979, 1694 | "end": 1982 1695 | }, 1696 | "deaths": 2075, 1697 | "nations": [ 1698 | { 1699 | "code": "SY", 1700 | "name": "Syria" 1701 | } 1702 | ] 1703 | }, 1704 | { 1705 | "name": "Thai Govt vs CPT", 1706 | "years": { 1707 | "start": 1974, 1708 | "end": 1982 1709 | }, 1710 | "deaths": 3425, 1711 | "nations": [ 1712 | { 1713 | "code": "TH", 1714 | "name": "Thailand" 1715 | } 1716 | ] 1717 | }, 1718 | { 1719 | "name": "Nicaraguan Gvt vs Sandinistas", 1720 | "years": { 1721 | "start": 1978, 1722 | "end": 1979 1723 | }, 1724 | "deaths": 10000, 1725 | "nations": [ 1726 | { 1727 | "code": "NI", 1728 | "name": "Nicaragua" 1729 | } 1730 | ] 1731 | }, 1732 | { 1733 | "name": "Uganda vs Tanzania ", 1734 | "years": { 1735 | "start": 1978, 1736 | "end": 1979 1737 | }, 1738 | "deaths": 3847, 1739 | "nations": [ 1740 | { 1741 | "code": "UG", 1742 | "name": "Uganda" 1743 | }, 1744 | { 1745 | "code": "TZ", 1746 | "name": "Tanzania" 1747 | } 1748 | ] 1749 | }, 1750 | { 1751 | "name": "Iranian Revolution", 1752 | "years": { 1753 | "start": 1978, 1754 | "end": 1979 1755 | }, 1756 | "deaths": 1100, 1757 | "nations": [ 1758 | { 1759 | "code": "IR", 1760 | "name": "Iran" 1761 | } 1762 | ] 1763 | }, 1764 | { 1765 | "name": "Rhodesian Government vs ZANU,ZAPU,PF", 1766 | "years": { 1767 | "start": 1967, 1768 | "end": 1979 1769 | }, 1770 | "deaths": 27080, 1771 | "nations": [ 1772 | { 1773 | "code": "ZW", 1774 | "name": "Zimbabwe" 1775 | } 1776 | ] 1777 | }, 1778 | { 1779 | "name": "Vietnam vs Cambodia (Kampuchea) ", 1780 | "years": { 1781 | "start": 1978, 1782 | "end": 1978 1783 | }, 1784 | "deaths": 32500, 1785 | "nations": [ 1786 | { 1787 | "code": "VN", 1788 | "name": "Vietnam" 1789 | }, 1790 | { 1791 | "code": "KH", 1792 | "name": "Cambodia" 1793 | } 1794 | ] 1795 | }, 1796 | { 1797 | "name": "Indonesian annexation of West Papua", 1798 | "years": { 1799 | "start": 1962, 1800 | "end": 1978 1801 | }, 1802 | "deaths": 8700, 1803 | "nations": [ 1804 | { 1805 | "code": "ID", 1806 | "name": "Indonesia" 1807 | }, 1808 | { 1809 | "code": "NL", 1810 | "name": "Netherlands" 1811 | } 1812 | ] 1813 | }, 1814 | { 1815 | "name": "Argentina: Civil War and Dirty War", 1816 | "years": { 1817 | "start": 1974, 1818 | "end": 1977 1819 | }, 1820 | "deaths": 4677, 1821 | "nations": [ 1822 | { 1823 | "code": "AR", 1824 | "name": "Argentina" 1825 | } 1826 | ] 1827 | }, 1828 | { 1829 | "name": "Balochistan Insurgency", 1830 | "years": { 1831 | "start": 1974, 1832 | "end": 1977 1833 | }, 1834 | "deaths": 8600, 1835 | "nations": [ 1836 | { 1837 | "code": "PK", 1838 | "name": "Pakistan" 1839 | } 1840 | ] 1841 | }, 1842 | { 1843 | "name": "Chinese Cultural Revolution", 1844 | "years": { 1845 | "start": 1967, 1846 | "end": 1976 1847 | }, 1848 | "deaths": 50000, 1849 | "nations": [ 1850 | { 1851 | "code": "CN", 1852 | "name": "China" 1853 | } 1854 | ] 1855 | }, 1856 | { 1857 | "name": "Cambodian Civil War ", 1858 | "years": { 1859 | "start": 1967, 1860 | "end": 1975 1861 | }, 1862 | "deaths": 250000, 1863 | "nations": [ 1864 | { 1865 | "code": "KH", 1866 | "name": "Cambodia" 1867 | }, 1868 | { 1869 | "code": "VN", 1870 | "name": "Vietnam" 1871 | } 1872 | ] 1873 | }, 1874 | { 1875 | "name": "Vietnam War ", 1876 | "years": { 1877 | "start": 1965, 1878 | "end": 1975 1879 | }, 1880 | "deaths": 1461050, 1881 | "nations": [ 1882 | { 1883 | "code": "VN", 1884 | "name": "Vietnam" 1885 | }, 1886 | { 1887 | "code": "US", 1888 | "name": "United States" 1889 | }, 1890 | { 1891 | "code": "AU", 1892 | "name": "Australia" 1893 | }, 1894 | { 1895 | "code": "NZ", 1896 | "name": "New Zealand" 1897 | }, 1898 | { 1899 | "code": "TH", 1900 | "name": "Thailand" 1901 | } 1902 | ] 1903 | }, 1904 | { 1905 | "name": "Angolan War of Independence", 1906 | "years": { 1907 | "start": 1961, 1908 | "end": 1975 1909 | }, 1910 | "deaths": 79000, 1911 | "nations": [ 1912 | { 1913 | "code": "PT", 1914 | "name": "Portugal" 1915 | }, 1916 | { 1917 | "code": "AO", 1918 | "name": "Angola" 1919 | } 1920 | ] 1921 | }, 1922 | { 1923 | "name": "Turko Cypriot War ", 1924 | "years": { 1925 | "start": 1974, 1926 | "end": 1974 1927 | }, 1928 | "deaths": 5000, 1929 | "nations": [ 1930 | { 1931 | "code": "TR", 1932 | "name": "Turkey" 1933 | }, 1934 | { 1935 | "code": "GR", 1936 | "name": "Greece" 1937 | }, 1938 | { 1939 | "code": "CY", 1940 | "name": "Cyprus" 1941 | } 1942 | ] 1943 | }, 1944 | { 1945 | "name": "Mozambique War of Independence", 1946 | "years": { 1947 | "start": 1964, 1948 | "end": 1974 1949 | }, 1950 | "deaths": 13500, 1951 | "nations": [ 1952 | { 1953 | "code": "MZ", 1954 | "name": "Mozambique" 1955 | }, 1956 | { 1957 | "code": "PT", 1958 | "name": "Portugal" 1959 | } 1960 | ] 1961 | }, 1962 | { 1963 | "name": "Yom Kippur War ", 1964 | "years": { 1965 | "start": 1973, 1966 | "end": 1973 1967 | }, 1968 | "deaths": 6450, 1969 | "nations": [ 1970 | { 1971 | "code": "IL", 1972 | "name": "Israel" 1973 | }, 1974 | { 1975 | "code": "EG", 1976 | "name": "Egypt" 1977 | }, 1978 | { 1979 | "code": "SY", 1980 | "name": "Syria" 1981 | } 1982 | ] 1983 | }, 1984 | { 1985 | "name": "Chilean MIlitary Coup", 1986 | "years": { 1987 | "start": 1973, 1988 | "end": 1973 1989 | }, 1990 | "deaths": 2095, 1991 | "nations": [ 1992 | { 1993 | "code": "CL", 1994 | "name": "Chile" 1995 | } 1996 | ] 1997 | }, 1998 | { 1999 | "name": "Guinea Bissau War of Independence", 2000 | "years": { 2001 | "start": 1963, 2002 | "end": 1973 2003 | }, 2004 | "deaths": 15000, 2005 | "nations": [ 2006 | { 2007 | "code": "PT", 2008 | "name": "Portugal" 2009 | }, 2010 | { 2011 | "code": "GW", 2012 | "name": "Guinea-Bissau" 2013 | } 2014 | ] 2015 | }, 2016 | { 2017 | "name": "Laos Civil War", 2018 | "years": { 2019 | "start": 1959, 2020 | "end": 1973 2021 | }, 2022 | "deaths": 21500, 2023 | "nations": [ 2024 | { 2025 | "code": "US", 2026 | "name": "United States" 2027 | }, 2028 | { 2029 | "code": "LA", 2030 | "name": "Laos" 2031 | }, 2032 | { 2033 | "code": "idk? was VN", 2034 | "name": "" 2035 | }, 2036 | { 2037 | "code": "TH", 2038 | "name": "Thailand" 2039 | } 2040 | ] 2041 | }, 2042 | { 2043 | "name": "Hutu Rebellion", 2044 | "years": { 2045 | "start": 1972, 2046 | "end": 1972 2047 | }, 2048 | "deaths": 3000, 2049 | "nations": [ 2050 | { 2051 | "code": "BI", 2052 | "name": "Burundi" 2053 | } 2054 | ] 2055 | }, 2056 | { 2057 | "name": "Sudan Government vs Insurgents", 2058 | "years": { 2059 | "start": 1963, 2060 | "end": 1972 2061 | }, 2062 | "deaths": 10000, 2063 | "nations": [ 2064 | { 2065 | "code": "SD", 2066 | "name": "Sudan" 2067 | } 2068 | ] 2069 | }, 2070 | { 2071 | "name": "Bangladesh War ", 2072 | "years": { 2073 | "start": 1971, 2074 | "end": 1971 2075 | }, 2076 | "deaths": 50000, 2077 | "nations": [ 2078 | { 2079 | "code": "IN", 2080 | "name": "India" 2081 | }, 2082 | { 2083 | "code": "PK", 2084 | "name": "Pakistan" 2085 | }, 2086 | { 2087 | "code": "BD", 2088 | "name": "Bangladesh" 2089 | } 2090 | ] 2091 | }, 2092 | { 2093 | "name": "Second Kashmir War", 2094 | "years": { 2095 | "start": 1964, 2096 | "end": 1971 2097 | }, 2098 | "deaths": 16327, 2099 | "nations": [ 2100 | { 2101 | "code": "IN", 2102 | "name": "India" 2103 | }, 2104 | { 2105 | "code": "PK", 2106 | "name": "Pakistan" 2107 | } 2108 | ] 2109 | }, 2110 | { 2111 | "name": "Israel vs Egypt", 2112 | "years": { 2113 | "start": 1969, 2114 | "end": 1970 2115 | }, 2116 | "deaths": 5520, 2117 | "nations": [ 2118 | { 2119 | "code": "IL", 2120 | "name": "Israel" 2121 | }, 2122 | { 2123 | "code": "EG", 2124 | "name": "Egypt" 2125 | } 2126 | ] 2127 | }, 2128 | { 2129 | "name": "Nigerian Civil War ", 2130 | "years": { 2131 | "start": 1967, 2132 | "end": 1970 2133 | }, 2134 | "deaths": 75000, 2135 | "nations": [ 2136 | { 2137 | "code": "NG", 2138 | "name": "Nigeria" 2139 | } 2140 | ] 2141 | }, 2142 | { 2143 | "name": "North Yemen Civil War", 2144 | "years": { 2145 | "start": 1962, 2146 | "end": 1970 2147 | }, 2148 | "deaths": 10000, 2149 | "nations": [ 2150 | { 2151 | "code": "YE", 2152 | "name": "Yemen" 2153 | } 2154 | ] 2155 | }, 2156 | { 2157 | "name": "First Kurdish�Iraqi War", 2158 | "years": { 2159 | "start": 1961, 2160 | "end": 1970 2161 | }, 2162 | "deaths": 6600, 2163 | "nations": [ 2164 | { 2165 | "code": "IQ", 2166 | "name": "Iraq" 2167 | } 2168 | ] 2169 | }, 2170 | { 2171 | "name": "Football War Honduras vs El Salvador ", 2172 | "years": { 2173 | "start": 1969, 2174 | "end": 1969 2175 | }, 2176 | "deaths": 2107, 2177 | "nations": [ 2178 | { 2179 | "code": "HN", 2180 | "name": "Honduras" 2181 | }, 2182 | { 2183 | "code": "SV", 2184 | "name": "El Salvador" 2185 | } 2186 | ] 2187 | }, 2188 | { 2189 | "name": "The Six Day War ", 2190 | "years": { 2191 | "start": 1967, 2192 | "end": 1967 2193 | }, 2194 | "deaths": 5413, 2195 | "nations": [ 2196 | { 2197 | "code": "IL", 2198 | "name": "Israel" 2199 | }, 2200 | { 2201 | "code": "JO", 2202 | "name": "Jordan" 2203 | }, 2204 | { 2205 | "code": "EG", 2206 | "name": "Egypt" 2207 | }, 2208 | { 2209 | "code": "SY", 2210 | "name": "Syria" 2211 | } 2212 | ] 2213 | }, 2214 | { 2215 | "name": "Dominican Republic Coup ", 2216 | "years": { 2217 | "start": 1965, 2218 | "end": 1965 2219 | }, 2220 | "deaths": 4027, 2221 | "nations": [ 2222 | { 2223 | "code": "DO", 2224 | "name": "Dominican Republic" 2225 | }, 2226 | { 2227 | "code": "US", 2228 | "name": "United States" 2229 | } 2230 | ] 2231 | }, 2232 | { 2233 | "name": "Congo Crisis", 2234 | "years": { 2235 | "start": 1960, 2236 | "end": 1965 2237 | }, 2238 | "deaths": 7175, 2239 | "nations": [ 2240 | { 2241 | "code": "US", 2242 | "name": "United States" 2243 | }, 2244 | { 2245 | "code": "CG", 2246 | "name": "Congo" 2247 | }, 2248 | { 2249 | "code": "CG", 2250 | "name": "Democratic Republic of the Congo" 2251 | }, 2252 | { 2253 | "code": "BE", 2254 | "name": "Belgium" 2255 | } 2256 | ] 2257 | }, 2258 | { 2259 | "name": "First Rwanda Civil War", 2260 | "years": { 2261 | "start": 1963, 2262 | "end": 1964 2263 | }, 2264 | "deaths": 1000, 2265 | "nations": [ 2266 | { 2267 | "code": "RW", 2268 | "name": "Rwanda" 2269 | } 2270 | ] 2271 | }, 2272 | { 2273 | "name": "Vietnam Civil War", 2274 | "years": { 2275 | "start": 1955, 2276 | "end": 1964 2277 | }, 2278 | "deaths": 164923, 2279 | "nations": [ 2280 | { 2281 | "code": "VN", 2282 | "name": "Vietnam" 2283 | }, 2284 | { 2285 | "code": "US", 2286 | "name": "United States" 2287 | } 2288 | ] 2289 | }, 2290 | { 2291 | "name": "Sino-Indian War", 2292 | "years": { 2293 | "start": 1962, 2294 | "end": 1962 2295 | }, 2296 | "deaths": 2105, 2297 | "nations": [ 2298 | { 2299 | "code": "CN", 2300 | "name": "China" 2301 | }, 2302 | { 2303 | "code": "IN", 2304 | "name": "India" 2305 | } 2306 | ] 2307 | }, 2308 | { 2309 | "name": "Algerian War of Independece", 2310 | "years": { 2311 | "start": 1954, 2312 | "end": 1962 2313 | }, 2314 | "deaths": 184886, 2315 | "nations": [ 2316 | { 2317 | "code": "FR", 2318 | "name": "France" 2319 | }, 2320 | { 2321 | "code": "DZ", 2322 | "name": "Algeria" 2323 | } 2324 | ] 2325 | }, 2326 | { 2327 | "name": "Bizerte Crisis", 2328 | "years": { 2329 | "start": 1961, 2330 | "end": 1961 2331 | }, 2332 | "deaths": 1394, 2333 | "nations": [ 2334 | { 2335 | "code": "TN", 2336 | "name": "Tunisia" 2337 | }, 2338 | { 2339 | "code": "FR", 2340 | "name": "France" 2341 | } 2342 | ] 2343 | }, 2344 | { 2345 | "name": "Cameroonian Govt vs UPC", 2346 | "years": { 2347 | "start": 1960, 2348 | "end": 1961 2349 | }, 2350 | "deaths": 60000, 2351 | "nations": [ 2352 | { 2353 | "code": "CM", 2354 | "name": "Cameroon" 2355 | } 2356 | ] 2357 | }, 2358 | { 2359 | "name": "Indonesia vs PRRI, Permesta and Darul Islam", 2360 | "years": { 2361 | "start": 1953, 2362 | "end": 1961 2363 | }, 2364 | "deaths": 33965, 2365 | "nations": [ 2366 | { 2367 | "code": "ID", 2368 | "name": "Indonesia" 2369 | }, 2370 | { 2371 | "code": "US", 2372 | "name": "United States" 2373 | } 2374 | ] 2375 | }, 2376 | { 2377 | "name": "Cuban Revolution", 2378 | "years": { 2379 | "start": 1953, 2380 | "end": 1961 2381 | }, 2382 | "deaths": 1205, 2383 | "nations": [ 2384 | { 2385 | "code": "CU", 2386 | "name": "Cuba" 2387 | } 2388 | ] 2389 | }, 2390 | { 2391 | "name": "1959 Mosul uprising in Iraq", 2392 | "years": { 2393 | "start": 1959, 2394 | "end": 1959 2395 | }, 2396 | "deaths": 2000, 2397 | "nations": [ 2398 | { 2399 | "code": "IQ", 2400 | "name": "Iraq" 2401 | } 2402 | ] 2403 | }, 2404 | { 2405 | "name": "Cameroon War of Independence", 2406 | "years": { 2407 | "start": 1957, 2408 | "end": 1959 2409 | }, 2410 | "deaths": 11700, 2411 | "nations": [ 2412 | { 2413 | "code": "CM", 2414 | "name": "Cameroon" 2415 | }, 2416 | { 2417 | "code": "FR", 2418 | "name": "France" 2419 | } 2420 | ] 2421 | }, 2422 | { 2423 | "name": "Tibetan Uprising", 2424 | "years": { 2425 | "start": 1956, 2426 | "end": 1959 2427 | }, 2428 | "deaths": 16000, 2429 | "nations": [ 2430 | { 2431 | "code": "CN", 2432 | "name": "China" 2433 | } 2434 | ] 2435 | }, 2436 | { 2437 | "name": "First Lebanese War", 2438 | "years": { 2439 | "start": 1958, 2440 | "end": 1958 2441 | }, 2442 | "deaths": 1400, 2443 | "nations": [ 2444 | { 2445 | "code": "LB", 2446 | "name": "Lebanon" 2447 | } 2448 | ] 2449 | }, 2450 | { 2451 | "name": "La Violencia ", 2452 | "years": { 2453 | "start": 1948, 2454 | "end": 1958 2455 | }, 2456 | "deaths": 29800, 2457 | "nations": [ 2458 | { 2459 | "code": "CO", 2460 | "name": "Colombia" 2461 | } 2462 | ] 2463 | }, 2464 | { 2465 | "name": "Malayan Civil War", 2466 | "years": { 2467 | "start": 1948, 2468 | "end": 1957 2469 | }, 2470 | "deaths": 10845, 2471 | "nations": [ 2472 | { 2473 | "code": "MY", 2474 | "name": "Malaysia" 2475 | }, 2476 | { 2477 | "code": "GB", 2478 | "name": "United Kingdom" 2479 | }, 2480 | { 2481 | "code": "AU", 2482 | "name": "Australia" 2483 | } 2484 | ] 2485 | }, 2486 | { 2487 | "name": "Sinai War", 2488 | "years": { 2489 | "start": 1956, 2490 | "end": 1956 2491 | }, 2492 | "deaths": 2142, 2493 | "nations": [ 2494 | { 2495 | "code": "IL", 2496 | "name": "Israel" 2497 | }, 2498 | { 2499 | "code": "EG", 2500 | "name": "Egypt" 2501 | }, 2502 | { 2503 | "code": "FR", 2504 | "name": "France" 2505 | }, 2506 | { 2507 | "code": "GB", 2508 | "name": "United Kingdom" 2509 | } 2510 | ] 2511 | }, 2512 | { 2513 | "name": "Soviet Invasion of Hungary", 2514 | "years": { 2515 | "start": 1956, 2516 | "end": 1956 2517 | }, 2518 | "deaths": 3171, 2519 | "nations": [ 2520 | { 2521 | "code": "HU", 2522 | "name": "Hungary" 2523 | }, 2524 | { 2525 | "code": "SJ", 2526 | "name": "Soviet Union" 2527 | } 2528 | ] 2529 | }, 2530 | { 2531 | "name": "Kenya, Mau-Mau vs UK", 2532 | "years": { 2533 | "start": 1954, 2534 | "end": 1956 2535 | }, 2536 | "deaths": 12955, 2537 | "nations": [ 2538 | { 2539 | "code": "KE", 2540 | "name": "Kenya" 2541 | }, 2542 | { 2543 | "code": "GB", 2544 | "name": "United Kingdom" 2545 | } 2546 | ] 2547 | }, 2548 | { 2549 | "name": "Tunisian war of Independence", 2550 | "years": { 2551 | "start": 1953, 2552 | "end": 1956 2553 | }, 2554 | "deaths": 2000, 2555 | "nations": [ 2556 | { 2557 | "code": "FR", 2558 | "name": "France" 2559 | }, 2560 | { 2561 | "code": "TN", 2562 | "name": "Tunisia" 2563 | } 2564 | ] 2565 | }, 2566 | { 2567 | "name": "Moroccan War of Independence", 2568 | "years": { 2569 | "start": 1953, 2570 | "end": 1956 2571 | }, 2572 | "deaths": 1000, 2573 | "nations": [ 2574 | { 2575 | "code": "MA", 2576 | "name": "Morocco" 2577 | }, 2578 | { 2579 | "code": "FR", 2580 | "name": "France" 2581 | }, 2582 | { 2583 | "code": "ES", 2584 | "name": "Spain" 2585 | } 2586 | ] 2587 | }, 2588 | { 2589 | "name": "Taiwan Strait Crisis", 2590 | "years": { 2591 | "start": 1949, 2592 | "end": 1954 2593 | }, 2594 | "deaths": 10025, 2595 | "nations": [ 2596 | { 2597 | "code": "TW", 2598 | "name": "Taiwan" 2599 | }, 2600 | { 2601 | "code": "CN", 2602 | "name": "China" 2603 | }, 2604 | { 2605 | "code": "US", 2606 | "name": "United States" 2607 | } 2608 | ] 2609 | }, 2610 | { 2611 | "name": "Philippines, Huk rebels vs Govt", 2612 | "years": { 2613 | "start": 1946, 2614 | "end": 1954 2615 | }, 2616 | "deaths": 9695, 2617 | "nations": [ 2618 | { 2619 | "code": "PH", 2620 | "name": "Philippines" 2621 | } 2622 | ] 2623 | }, 2624 | { 2625 | "name": "First Indochina War Comm. vs France", 2626 | "years": { 2627 | "start": 1946, 2628 | "end": 1954 2629 | }, 2630 | "deaths": 377523, 2631 | "nations": [ 2632 | { 2633 | "code": "FR", 2634 | "name": "France" 2635 | }, 2636 | { 2637 | "code": "VN", 2638 | "name": "Vietnam" 2639 | } 2640 | ] 2641 | }, 2642 | { 2643 | "name": "Korean War", 2644 | "years": { 2645 | "start": 1949, 2646 | "end": 1953 2647 | }, 2648 | "deaths": 995025, 2649 | "nations": [ 2650 | { 2651 | "code": "US", 2652 | "name": "United States" 2653 | }, 2654 | { 2655 | "code": "CN", 2656 | "name": "China" 2657 | }, 2658 | { 2659 | "code": "KP", 2660 | "name": "North Korea" 2661 | }, 2662 | { 2663 | "code": "KR", 2664 | "name": "South Korea" 2665 | }, 2666 | { 2667 | "code": "AU", 2668 | "name": "Australia" 2669 | } 2670 | ] 2671 | }, 2672 | { 2673 | "name": "Bolivian Revolution", 2674 | "years": { 2675 | "start": 1952, 2676 | "end": 1952 2677 | }, 2678 | "deaths": 1000, 2679 | "nations": [ 2680 | { 2681 | "code": "BO", 2682 | "name": "Bolivia" 2683 | } 2684 | ] 2685 | }, 2686 | { 2687 | "name": "Indian Govt vs Communist Rebels CPI", 2688 | "years": { 2689 | "start": 1948, 2690 | "end": 1951 2691 | }, 2692 | "deaths": 4000, 2693 | "nations": [ 2694 | { 2695 | "code": "IN", 2696 | "name": "India" 2697 | } 2698 | ] 2699 | }, 2700 | { 2701 | "name": "Soviet Union vs Baltic Partisans (��Forest Brethren��)", 2702 | "years": { 2703 | "start": 1945, 2704 | "end": 1951 2705 | }, 2706 | "deaths": 32400, 2707 | "nations": [ 2708 | { 2709 | "code": "SJ", 2710 | "name": "Soviet Union" 2711 | }, 2712 | { 2713 | "code": "EE", 2714 | "name": "Estonia" 2715 | }, 2716 | { 2717 | "code": "LV", 2718 | "name": "Latvia" 2719 | }, 2720 | { 2721 | "code": "LT", 2722 | "name": "Lithuania" 2723 | } 2724 | ] 2725 | }, 2726 | { 2727 | "name": "Indonesian Govt vs Republic of South Moluccas", 2728 | "years": { 2729 | "start": 1950, 2730 | "end": 1950 2731 | }, 2732 | "deaths": 1000, 2733 | "nations": [ 2734 | { 2735 | "code": "ID", 2736 | "name": "Indonesia" 2737 | } 2738 | ] 2739 | }, 2740 | { 2741 | "name": "Third Sino-Tibetan War", 2742 | "years": { 2743 | "start": 1950, 2744 | "end": 1950 2745 | }, 2746 | "deaths": 4000, 2747 | "nations": [ 2748 | { 2749 | "code": "CN", 2750 | "name": "China" 2751 | } 2752 | ] 2753 | }, 2754 | { 2755 | "name": "Cheju Rebellion in South Korea", 2756 | "years": { 2757 | "start": 1948, 2758 | "end": 1949 2759 | }, 2760 | "deaths": 17000, 2761 | "nations": [ 2762 | { 2763 | "code": "KR", 2764 | "name": "South Korea" 2765 | } 2766 | ] 2767 | }, 2768 | { 2769 | "name": "Arab-Israeli War", 2770 | "years": { 2771 | "start": 1948, 2772 | "end": 1949 2773 | }, 2774 | "deaths": 21111, 2775 | "nations": [ 2776 | { 2777 | "code": "IL", 2778 | "name": "Israel" 2779 | }, 2780 | { 2781 | "code": "EG", 2782 | "name": "Egypt" 2783 | }, 2784 | { 2785 | "code": "LY", 2786 | "name": "Libya" 2787 | }, 2788 | { 2789 | "code": "JO", 2790 | "name": "Jordan" 2791 | }, 2792 | { 2793 | "code": "SY", 2794 | "name": "Syria" 2795 | }, 2796 | { 2797 | "code": "IQ", 2798 | "name": "Iraq" 2799 | } 2800 | ] 2801 | }, 2802 | { 2803 | "name": "Greece Civil War", 2804 | "years": { 2805 | "start": 1946, 2806 | "end": 1949 2807 | }, 2808 | "deaths": 154000, 2809 | "nations": [ 2810 | { 2811 | "code": "GR", 2812 | "name": "Greece" 2813 | } 2814 | ] 2815 | }, 2816 | { 2817 | "name": "Chinese Civil War", 2818 | "years": { 2819 | "start": 1946, 2820 | "end": 1949 2821 | }, 2822 | "deaths": 1200000, 2823 | "nations": [ 2824 | { 2825 | "code": "CN", 2826 | "name": "China" 2827 | } 2828 | ] 2829 | }, 2830 | { 2831 | "name": "Costa Rican Civil War", 2832 | "years": { 2833 | "start": 1948, 2834 | "end": 1948 2835 | }, 2836 | "deaths": 2000, 2837 | "nations": [ 2838 | { 2839 | "code": "CR", 2840 | "name": "Costa Rica" 2841 | } 2842 | ] 2843 | }, 2844 | { 2845 | "name": "First Kashmir War", 2846 | "years": { 2847 | "start": 1948, 2848 | "end": 1948 2849 | }, 2850 | "deaths": 7500, 2851 | "nations": [ 2852 | { 2853 | "code": "IN", 2854 | "name": "India" 2855 | }, 2856 | { 2857 | "code": "PK", 2858 | "name": "Pakistan" 2859 | } 2860 | ] 2861 | }, 2862 | { 2863 | "name": "Yemeni Imamate War", 2864 | "years": { 2865 | "start": 1948, 2866 | "end": 1948 2867 | }, 2868 | "deaths": 4000, 2869 | "nations": [ 2870 | { 2871 | "code": "YE", 2872 | "name": "Yemen" 2873 | } 2874 | ] 2875 | }, 2876 | { 2877 | "name": "Civil War in Mandatory Palestine", 2878 | "years": { 2879 | "start": 1947, 2880 | "end": 1948 2881 | }, 2882 | "deaths": 4009, 2883 | "nations": [ 2884 | { 2885 | "code": "GB", 2886 | "name": "United Kingdom" 2887 | } 2888 | ] 2889 | }, 2890 | { 2891 | "name": "Telangana Rebellion and Indo-Hyderabad War", 2892 | "years": { 2893 | "start": 1947, 2894 | "end": 1948 2895 | }, 2896 | "deaths": 4360, 2897 | "nations": [ 2898 | { 2899 | "code": "IN", 2900 | "name": "India" 2901 | } 2902 | ] 2903 | }, 2904 | { 2905 | "name": "Indian Partition Communal Violence", 2906 | "years": { 2907 | "start": 1947, 2908 | "end": 1948 2909 | }, 2910 | "deaths": 200000, 2911 | "nations": [ 2912 | { 2913 | "code": "IN", 2914 | "name": "India" 2915 | }, 2916 | { 2917 | "code": "PK", 2918 | "name": "Pakistan" 2919 | } 2920 | ] 2921 | }, 2922 | { 2923 | "name": "Taiwanese revolt", 2924 | "years": { 2925 | "start": 1947, 2926 | "end": 1947 2927 | }, 2928 | "deaths": 1000, 2929 | "nations": [ 2930 | { 2931 | "code": "TW", 2932 | "name": "Taiwan" 2933 | }, 2934 | { 2935 | "code": "CN", 2936 | "name": "China" 2937 | } 2938 | ] 2939 | }, 2940 | { 2941 | "name": "Madagascar Rebellion", 2942 | "years": { 2943 | "start": 1947, 2944 | "end": 1947 2945 | }, 2946 | "deaths": 6952, 2947 | "nations": [ 2948 | { 2949 | "code": "MG", 2950 | "name": "Madagascar" 2951 | }, 2952 | { 2953 | "code": "FR", 2954 | "name": "France" 2955 | } 2956 | ] 2957 | }, 2958 | { 2959 | "name": "Paraguayan Gvt vs Rebels", 2960 | "years": { 2961 | "start": 1947, 2962 | "end": 1947 2963 | }, 2964 | "deaths": 4000, 2965 | "nations": [ 2966 | { 2967 | "code": "PY", 2968 | "name": "Paraguay" 2969 | } 2970 | ] 2971 | }, 2972 | { 2973 | "name": "Poland and Soviet Union vs Ukrainian Partisans", 2974 | "years": { 2975 | "start": 1945, 2976 | "end": 1947 2977 | }, 2978 | "deaths": 59700, 2979 | "nations": [ 2980 | { 2981 | "code": "SJ", 2982 | "name": "Soviet Union" 2983 | }, 2984 | { 2985 | "code": "PL", 2986 | "name": "Poland" 2987 | } 2988 | ] 2989 | }, 2990 | { 2991 | "name": "Indonesian Independence", 2992 | "years": { 2993 | "start": 1945, 2994 | "end": 1946 2995 | }, 2996 | "deaths": 5400, 2997 | "nations": [ 2998 | { 2999 | "code": "GB", 3000 | "name": "United Kingdom" 3001 | }, 3002 | { 3003 | "code": "NL", 3004 | "name": "Netherlands" 3005 | }, 3006 | { 3007 | "code": "ID", 3008 | "name": "Indonesia" 3009 | } 3010 | ] 3011 | }, 3012 | { 3013 | "name": "World War II", 3014 | "years": { 3015 | "start": 1939, 3016 | "end": 1945 3017 | }, 3018 | "deaths": 50000000, 3019 | "deaths_in": { 3020 | "AU": 700, 3021 | "BE": 76000, 3022 | "BR": 1000, 3023 | "BG": 3000, 3024 | "MM": 250000, 3025 | "CA": 1600, 3026 | "CN": 8000000, 3027 | "CU": 100, 3028 | "CZ": 150000, 3029 | "SK": 150000, 3030 | "DK": 6000, 3031 | "EE": 49000, 3032 | "ET": 85000, 3033 | "FI": 2000, 3034 | "FR": 390000, 3035 | "DE": 2000000, 3036 | "GR": 171800, 3037 | "HU": 264000, 3038 | "IS": 200, 3039 | "IQ": 200, 3040 | "IE": 100, 3041 | "IT": 153200, 3042 | "JP": 700000, 3043 | "KP": 250000, 3044 | "KR": 250000, 3045 | "LV": 220000, 3046 | "LT": 345000, 3047 | "LU": 5000, 3048 | "MT": 1500, 3049 | "MX": 100, 3050 | "NR": 500, 3051 | "NL": 187300, 3052 | "NO": 8200, 3053 | "PG": 15000, 3054 | "PH": 164000, 3055 | "PL": 5700000, 3056 | "RO": 200000, 3057 | "SE": 2000, 3058 | "CH": 100, 3059 | "TW": 2000, 3060 | "GB": 67200, 3061 | "US": 12100, 3062 | 3063 | "BA": 200000, 3064 | "HR": 200000, 3065 | "MK": 200000, 3066 | "ME": 200000, 3067 | "SI": 200000, 3068 | "RS": 200000, 3069 | 3070 | "RU": 1000000, 3071 | "UA": 500000, 3072 | "BY": 500000, 3073 | "AM": 500000, 3074 | "AZ": 500000, 3075 | "GE": 500000, 3076 | "KZ": 500000, 3077 | "KG": 500000, 3078 | "MD": 500000, 3079 | "MN": 500000, 3080 | "TJ": 500000, 3081 | "TM": 500000, 3082 | "UZ": 500000, 3083 | 3084 | "SG": 100000, 3085 | "TL": 55000 3086 | }, 3087 | "nations": [ 3088 | { 3089 | "code": "AU", 3090 | "name": "Australia" 3091 | }, 3092 | { 3093 | "code": "GB", 3094 | "name": "United Kingdom" 3095 | }, 3096 | { 3097 | "code": "US", 3098 | "name": "United States" 3099 | }, 3100 | { 3101 | "code": "FR", 3102 | "name": "France" 3103 | }, 3104 | { 3105 | "code": "IT", 3106 | "name": "Italy" 3107 | }, 3108 | { 3109 | "code": "DE", 3110 | "name": "Germany" 3111 | }, 3112 | { 3113 | "code": "DK", 3114 | "name": "Denmark" 3115 | }, 3116 | { 3117 | "code": "NL", 3118 | "name": "Netherlands" 3119 | }, 3120 | { 3121 | "code": "SJ", 3122 | "name": "Soviet Union" 3123 | }, 3124 | { 3125 | "code": "JP", 3126 | "name": "Japan" 3127 | }, 3128 | { 3129 | "code": "NO", 3130 | "name": "Norway" 3131 | }, 3132 | { 3133 | "code": "FI", 3134 | "name": "Finland" 3135 | }, 3136 | { 3137 | "code": "ES", 3138 | "name": "Spain" 3139 | }, 3140 | { 3141 | "code": "PL", 3142 | "name": "Poland" 3143 | }, 3144 | { 3145 | "code": "AT", 3146 | "name": "Austria" 3147 | }, 3148 | { 3149 | "code": "ES", 3150 | "name": "Spain" 3151 | }, 3152 | { 3153 | "code": "GR", 3154 | "name": "Greece" 3155 | }, 3156 | { 3157 | "code": "CN", 3158 | "name": "China" 3159 | }, 3160 | { 3161 | "code": "CA", 3162 | "name": "Canada" 3163 | }, 3164 | { 3165 | "code": "NZ", 3166 | "name": "New Zealand" 3167 | }, 3168 | { 3169 | "code": "IN", 3170 | "name": "India" 3171 | }, 3172 | { 3173 | "code": "ZA", 3174 | "name": "South Africa" 3175 | }, 3176 | { 3177 | "code": "BE", 3178 | "name": "Belgium" 3179 | }, 3180 | { 3181 | "code": "CZ", 3182 | "name": "Czech Republic" 3183 | }, 3184 | { 3185 | "code": "ET", 3186 | "name": "Ethiopia" 3187 | }, 3188 | { 3189 | "code": "MX", 3190 | "name": "Mexico" 3191 | }, 3192 | { 3193 | "code": "HU", 3194 | "name": "Hungary" 3195 | }, 3196 | { 3197 | "code": "RO", 3198 | "name": "Romania" 3199 | }, 3200 | { 3201 | "code": "BG", 3202 | "name": "Bulgaria" 3203 | }, 3204 | { 3205 | "code": "FI", 3206 | "name": "Finland" 3207 | }, 3208 | { 3209 | "code": "TH", 3210 | "name": "Thailand" 3211 | }, 3212 | { 3213 | "code": "IQ", 3214 | "name": "Iraq" 3215 | }, 3216 | { 3217 | "code": "CR", 3218 | "name": "Costa Rica" 3219 | }, 3220 | { 3221 | "code": "YU", 3222 | "name": "Yugoslavia" 3223 | } 3224 | ] 3225 | }, 3226 | { 3227 | "name": "Franco-Thai War", 3228 | "years": { 3229 | "start": 1940, 3230 | "end": 1941 3231 | }, 3232 | "deaths": 1400, 3233 | "nations": [ 3234 | { 3235 | "code": "TH", 3236 | "name": "Thailand" 3237 | }, 3238 | { 3239 | "code": "FR", 3240 | "name": "France" 3241 | }, 3242 | { 3243 | "code": "GB", 3244 | "name": "United Kingdom" 3245 | } 3246 | ] 3247 | }, 3248 | { 3249 | "name": "Third Sino-Japanese War", 3250 | "years": { 3251 | "start": 1937, 3252 | "end": 1941 3253 | }, 3254 | "deaths": 1000000, 3255 | "nations": [ 3256 | { 3257 | "code": "CN", 3258 | "name": "China" 3259 | }, 3260 | { 3261 | "code": "JP", 3262 | "name": "Japan" 3263 | } 3264 | ] 3265 | }, 3266 | { 3267 | "name": "The Winter War in Finland", 3268 | "years": { 3269 | "start": 1939, 3270 | "end": 1940 3271 | }, 3272 | "deaths": 151798, 3273 | "nations": [ 3274 | { 3275 | "code": "FI", 3276 | "name": "Finland" 3277 | }, 3278 | { 3279 | "code": "SJ", 3280 | "name": "Soviet Union" 3281 | } 3282 | ] 3283 | }, 3284 | { 3285 | "name": "The battle of Khalkhin Gol", 3286 | "years": { 3287 | "start": 1939, 3288 | "end": 1939 3289 | }, 3290 | "deaths": 28000, 3291 | "nations": [ 3292 | { 3293 | "code": "JP", 3294 | "name": "Japan" 3295 | }, 3296 | { 3297 | "code": "SJ", 3298 | "name": "Soviet Union" 3299 | } 3300 | ] 3301 | }, 3302 | { 3303 | "name": " Arab revolt in Mandatory Palestine", 3304 | "years": { 3305 | "start": 1936, 3306 | "end": 1939 3307 | }, 3308 | "deaths": 2576, 3309 | "nations": [ 3310 | { 3311 | "code": "GB", 3312 | "name": "United Kingdom" 3313 | } 3314 | ] 3315 | }, 3316 | { 3317 | "name": "Second British-Waziristan", 3318 | "years": { 3319 | "start": 1936, 3320 | "end": 1939 3321 | }, 3322 | "deaths": 10200, 3323 | "nations": [ 3324 | { 3325 | "code": "GB", 3326 | "name": "United Kingdom" 3327 | } 3328 | ] 3329 | }, 3330 | { 3331 | "name": "Spanish Civil War ", 3332 | "years": { 3333 | "start": 1936, 3334 | "end": 1939 3335 | }, 3336 | "deaths": 466300, 3337 | "nations": [ 3338 | { 3339 | "code": "ES", 3340 | "name": "Spain" 3341 | }, 3342 | { 3343 | "code": "DE", 3344 | "name": "Germany" 3345 | }, 3346 | { 3347 | "code": "PT", 3348 | "name": "" 3349 | }, 3350 | { 3351 | "code": "IT", 3352 | "name": "Italy" 3353 | } 3354 | ] 3355 | }, 3356 | { 3357 | "name": "Changkufeng Incident", 3358 | "years": { 3359 | "start": 1938, 3360 | "end": 1938 3361 | }, 3362 | "deaths": 1726, 3363 | "nations": [ 3364 | { 3365 | "code": "JP", 3366 | "name": "Japan" 3367 | }, 3368 | { 3369 | "code": "SJ", 3370 | "name": "Soviet Union" 3371 | }, 3372 | { 3373 | "code": "CN", 3374 | "name": "China" 3375 | } 3376 | ] 3377 | }, 3378 | { 3379 | "name": "Italo-Ethiopian War", 3380 | "years": { 3381 | "start": 1935, 3382 | "end": 1936 3383 | }, 3384 | "deaths": 20000, 3385 | "nations": [ 3386 | { 3387 | "code": "ET", 3388 | "name": "Ethiopia" 3389 | }, 3390 | { 3391 | "code": "IT", 3392 | "name": "Italy" 3393 | } 3394 | ] 3395 | }, 3396 | { 3397 | "name": "Chaco War", 3398 | "years": { 3399 | "start": 1932, 3400 | "end": 1935 3401 | }, 3402 | "deaths": 92661, 3403 | "nations": [ 3404 | { 3405 | "code": "PY", 3406 | "name": "Paraguay" 3407 | }, 3408 | { 3409 | "code": "BO", 3410 | "name": "Bolivia" 3411 | } 3412 | ] 3413 | }, 3414 | { 3415 | "name": "Communists vs Koumintang", 3416 | "years": { 3417 | "start": 1930, 3418 | "end": 1935 3419 | }, 3420 | "deaths": 500000, 3421 | "nations": [ 3422 | { 3423 | "code": "CN", 3424 | "name": "China" 3425 | } 3426 | ] 3427 | }, 3428 | { 3429 | "name": "Spanish Socialists vs Govt", 3430 | "years": { 3431 | "start": 1934, 3432 | "end": 1934 3433 | }, 3434 | "deaths": 1335, 3435 | "nations": [ 3436 | { 3437 | "code": "ES", 3438 | "name": "Spain" 3439 | } 3440 | ] 3441 | }, 3442 | { 3443 | "name": "Saudi-Yemeni War", 3444 | "years": { 3445 | "start": 1934, 3446 | "end": 1934 3447 | }, 3448 | "deaths": 2100, 3449 | "nations": [ 3450 | { 3451 | "code": "SA", 3452 | "name": "Saudi Arabia" 3453 | }, 3454 | { 3455 | "code": "YE", 3456 | "name": "Yemen" 3457 | } 3458 | ] 3459 | }, 3460 | { 3461 | "name": "Xinjiang Muslim Revolt", 3462 | "years": { 3463 | "start": 1931, 3464 | "end": 1934 3465 | }, 3466 | "deaths": 21000, 3467 | "nations": [ 3468 | { 3469 | "code": "SJ", 3470 | "name": "Soviet Union" 3471 | }, 3472 | { 3473 | "code": "CN", 3474 | "name": "China" 3475 | } 3476 | ] 3477 | }, 3478 | { 3479 | "name": "Manchurian War", 3480 | "years": { 3481 | "start": 1931, 3482 | "end": 1933 3483 | }, 3484 | "deaths": 60000, 3485 | "nations": [ 3486 | { 3487 | "code": "JP", 3488 | "name": "Japan" 3489 | }, 3490 | { 3491 | "code": "CN", 3492 | "name": "China" 3493 | } 3494 | ] 3495 | }, 3496 | { 3497 | "name": "Aprista Revolt in Peru", 3498 | "years": { 3499 | "start": 1932, 3500 | "end": 1932 3501 | }, 3502 | "deaths": 1100, 3503 | "nations": [ 3504 | { 3505 | "code": "PE", 3506 | "name": "Peru" 3507 | } 3508 | ] 3509 | }, 3510 | { 3511 | "name": "El Salvador, La Matanza", 3512 | "years": { 3513 | "start": 1932, 3514 | "end": 1932 3515 | }, 3516 | "deaths": 2600, 3517 | "nations": [ 3518 | { 3519 | "code": "SV", 3520 | "name": "El Salvador" 3521 | } 3522 | ] 3523 | }, 3524 | { 3525 | "name": "Brazilian Revolt", 3526 | "years": { 3527 | "start": 1932, 3528 | "end": 1932 3529 | }, 3530 | "deaths": 1000, 3531 | "nations": [ 3532 | { 3533 | "code": "BR", 3534 | "name": "Brazil" 3535 | } 3536 | ] 3537 | }, 3538 | { 3539 | "name": "Saya San Rebellion", 3540 | "years": { 3541 | "start": 1930, 3542 | "end": 1932 3543 | }, 3544 | "deaths": 1140, 3545 | "nations": [ 3546 | { 3547 | "code": "GB", 3548 | "name": "United Kingdom" 3549 | }, 3550 | { 3551 | "code": "MM", 3552 | "name": "Myanmar (Burma)" 3553 | } 3554 | ] 3555 | }, 3556 | { 3557 | "name": "Senussi Orden vs Italy", 3558 | "years": { 3559 | "start": 1920, 3560 | "end": 1932 3561 | }, 3562 | "deaths": 40000, 3563 | "nations": [ 3564 | { 3565 | "code": "IT", 3566 | "name": "Italy" 3567 | }, 3568 | { 3569 | "code": "LY", 3570 | "name": "Libya" 3571 | } 3572 | ] 3573 | }, 3574 | { 3575 | "name": "The Y�n B�i Uprising", 3576 | "years": { 3577 | "start": 1930, 3578 | "end": 1931 3579 | }, 3580 | "deaths": 1000, 3581 | "nations": [ 3582 | { 3583 | "code": "VN", 3584 | "name": "Vietnam" 3585 | }, 3586 | { 3587 | "code": "FR", 3588 | "name": "France" 3589 | } 3590 | ] 3591 | }, 3592 | { 3593 | "name": "Ikhwan Revolt", 3594 | "years": { 3595 | "start": 1929, 3596 | "end": 1930 3597 | }, 3598 | "deaths": 5500, 3599 | "nations": [ 3600 | { 3601 | "code": "SA", 3602 | "name": "Saudi Arabia" 3603 | } 3604 | ] 3605 | }, 3606 | { 3607 | "name": "Kuomintang vs warlords", 3608 | "years": { 3609 | "start": 1929, 3610 | "end": 1930 3611 | }, 3612 | "deaths": 75000, 3613 | "nations": [ 3614 | { 3615 | "code": "CN", 3616 | "name": "China" 3617 | } 3618 | ] 3619 | }, 3620 | { 3621 | "name": "Sino-Soviet war", 3622 | "years": { 3623 | "start": 1929, 3624 | "end": 1929 3625 | }, 3626 | "deaths": 3200, 3627 | "nations": [ 3628 | { 3629 | "code": "SJ", 3630 | "name": "Soviet Union" 3631 | }, 3632 | { 3633 | "code": "CN", 3634 | "name": "China" 3635 | } 3636 | ] 3637 | }, 3638 | { 3639 | "name": "Escobar Rebellion", 3640 | "years": { 3641 | "start": 1929, 3642 | "end": 1929 3643 | }, 3644 | "deaths": 2000, 3645 | "nations": [ 3646 | { 3647 | "code": "MX", 3648 | "name": "Mexico" 3649 | } 3650 | ] 3651 | }, 3652 | { 3653 | "name": "Second Afghan Anti-Reform War", 3654 | "years": { 3655 | "start": 1928, 3656 | "end": 1929 3657 | }, 3658 | "deaths": 15000, 3659 | "nations": [ 3660 | { 3661 | "code": "AF", 3662 | "name": "Afghanistan" 3663 | } 3664 | ] 3665 | }, 3666 | { 3667 | "name": "The Cristero War", 3668 | "years": { 3669 | "start": 1926, 3670 | "end": 1929 3671 | }, 3672 | "deaths": 10000, 3673 | "nations": [ 3674 | { 3675 | "code": "MX", 3676 | "name": "Mexico" 3677 | } 3678 | ] 3679 | }, 3680 | { 3681 | "name": "Kuomintang vs Gansu Rebels", 3682 | "years": { 3683 | "start": 1928, 3684 | "end": 1928 3685 | }, 3686 | "deaths": 200000, 3687 | "nations": [ 3688 | { 3689 | "code": "CN", 3690 | "name": "China" 3691 | } 3692 | ] 3693 | }, 3694 | { 3695 | "name": "Northern Expedition", 3696 | "years": { 3697 | "start": 1926, 3698 | "end": 1928 3699 | }, 3700 | "deaths": 126500, 3701 | "nations": [ 3702 | { 3703 | "code": "CN", 3704 | "name": "China" 3705 | } 3706 | ] 3707 | }, 3708 | { 3709 | "name": "Druze revolt", 3710 | "years": { 3711 | "start": 1925, 3712 | "end": 1927 3713 | }, 3714 | "deaths": 6000, 3715 | "nations": [ 3716 | { 3717 | "code": "SY", 3718 | "name": "Syria" 3719 | }, 3720 | { 3721 | "code": "FR", 3722 | "name": "France" 3723 | } 3724 | ] 3725 | }, 3726 | { 3727 | "name": "Third Chinese Warlord War", 3728 | "years": { 3729 | "start": 1925, 3730 | "end": 1926 3731 | }, 3732 | "deaths": 1000, 3733 | "nations": [ 3734 | { 3735 | "code": "CN", 3736 | "name": "China" 3737 | } 3738 | ] 3739 | }, 3740 | { 3741 | "name": "Third Rif War", 3742 | "years": { 3743 | "start": 1920, 3744 | "end": 1926 3745 | }, 3746 | "deaths": 70000, 3747 | "nations": [ 3748 | { 3749 | "code": "ES", 3750 | "name": "Spain" 3751 | }, 3752 | { 3753 | "code": "FR", 3754 | "name": "France" 3755 | } 3756 | ] 3757 | }, 3758 | { 3759 | "name": "Afghan rebels vs govt", 3760 | "years": { 3761 | "start": 1924, 3762 | "end": 1925 3763 | }, 3764 | "deaths": 2000, 3765 | "nations": [ 3766 | { 3767 | "code": "AF", 3768 | "name": "Afghanistan" 3769 | } 3770 | ] 3771 | }, 3772 | { 3773 | "name": "Nejd-Hejaz Wars", 3774 | "years": { 3775 | "start": 1919, 3776 | "end": 1925 3777 | }, 3778 | "deaths": 4000, 3779 | "nations": [ 3780 | { 3781 | "code": "SA", 3782 | "name": "Saudi Arabia" 3783 | } 3784 | ] 3785 | }, 3786 | { 3787 | "name": "Honduras Coup", 3788 | "years": { 3789 | "start": 1924, 3790 | "end": 1924 3791 | }, 3792 | "deaths": 1000, 3793 | "nations": [ 3794 | { 3795 | "code": "HN", 3796 | "name": "Honduras" 3797 | } 3798 | ] 3799 | }, 3800 | { 3801 | "name": "Soviet-Turkestan War", 3802 | "years": { 3803 | "start": 1921, 3804 | "end": 1923 3805 | }, 3806 | "deaths": 3500, 3807 | "nations": [ 3808 | { 3809 | "code": "SJ", 3810 | "name": "Soviet Union" 3811 | } 3812 | ] 3813 | }, 3814 | { 3815 | "name": "Second Chinese Warlord War", 3816 | "years": { 3817 | "start": 1922, 3818 | "end": 1922 3819 | }, 3820 | "deaths": 20000, 3821 | "nations": [ 3822 | { 3823 | "code": "CN", 3824 | "name": "China" 3825 | } 3826 | ] 3827 | }, 3828 | { 3829 | "name": "Ireland freestaters vs Irregulars ", 3830 | "years": { 3831 | "start": 1921, 3832 | "end": 1922 3833 | }, 3834 | "deaths": 4000, 3835 | "nations": [ 3836 | { 3837 | "code": "IE", 3838 | "name": "Ireland" 3839 | } 3840 | ] 3841 | }, 3842 | { 3843 | "name": "Moplah Riots in Kerala", 3844 | "years": { 3845 | "start": 1921, 3846 | "end": 1922 3847 | }, 3848 | "deaths": 2450, 3849 | "nations": [ 3850 | { 3851 | "code": "IN", 3852 | "name": "India" 3853 | }, 3854 | { 3855 | "code": "GB", 3856 | "name": "United Kingdom" 3857 | } 3858 | ] 3859 | }, 3860 | { 3861 | "name": "Blackshirts vs Leftists", 3862 | "years": { 3863 | "start": 1920, 3864 | "end": 1922 3865 | }, 3866 | "deaths": 3300, 3867 | "nations": [ 3868 | { 3869 | "code": "IT", 3870 | "name": "Italy" 3871 | } 3872 | ] 3873 | }, 3874 | { 3875 | "name": "Second Greco Turkish War", 3876 | "years": { 3877 | "start": 1919, 3878 | "end": 1922 3879 | }, 3880 | "deaths": 50000, 3881 | "nations": [ 3882 | { 3883 | "code": "GR", 3884 | "name": "Greece" 3885 | }, 3886 | { 3887 | "code": "TR", 3888 | "name": "Turkey" 3889 | } 3890 | ] 3891 | }, 3892 | { 3893 | "name": "Russian Revolution and Civil War", 3894 | "years": { 3895 | "start": 1917, 3896 | "end": 1922 3897 | }, 3898 | "deaths": 802225, 3899 | "nations": [ 3900 | { 3901 | "code": "RU", 3902 | "name": "Russia" 3903 | }, 3904 | { 3905 | "code": "GB", 3906 | "name": "United Kingdom" 3907 | }, 3908 | { 3909 | "code": "FR", 3910 | "name": "France" 3911 | }, 3912 | { 3913 | "code": "JP", 3914 | "name": "Japan" 3915 | }, 3916 | { 3917 | "code": "US", 3918 | "name": "United States" 3919 | }, 3920 | { 3921 | "code": "SJ", 3922 | "name": "Soviet Union" 3923 | } 3924 | ] 3925 | }, 3926 | { 3927 | "name": "Kronstadt Rebellion", 3928 | "years": { 3929 | "start": 1921, 3930 | "end": 1921 3931 | }, 3932 | "deaths": 2600, 3933 | "nations": [ 3934 | { 3935 | "code": "SJ", 3936 | "name": "Soviet Union" 3937 | } 3938 | ] 3939 | }, 3940 | { 3941 | "name": "Conquest of Mongolia", 3942 | "years": { 3943 | "start": 1920, 3944 | "end": 1921 3945 | }, 3946 | "deaths": 4000, 3947 | "nations": [ 3948 | { 3949 | "code": "CN", 3950 | "name": "China" 3951 | }, 3952 | { 3953 | "code": "SJ", 3954 | "name": "Soviet Union" 3955 | } 3956 | ] 3957 | }, 3958 | { 3959 | "name": "Iraq vs UK", 3960 | "years": { 3961 | "start": 1920, 3962 | "end": 1921 3963 | }, 3964 | "deaths": 9540, 3965 | "nations": [ 3966 | { 3967 | "code": "GB", 3968 | "name": "United Kingdom" 3969 | }, 3970 | { 3971 | "code": "IQ", 3972 | "name": "Iraq" 3973 | } 3974 | ] 3975 | }, 3976 | { 3977 | "name": "Green Rebellion", 3978 | "years": { 3979 | "start": 1920, 3980 | "end": 1921 3981 | }, 3982 | "deaths": 6700, 3983 | "nations": [ 3984 | { 3985 | "code": "SJ", 3986 | "name": "Soviet Union" 3987 | } 3988 | ] 3989 | }, 3990 | { 3991 | "name": "Turkish War of Independence", 3992 | "years": { 3993 | "start": 1919, 3994 | "end": 1921 3995 | }, 3996 | "deaths": 40000, 3997 | "nations": [ 3998 | { 3999 | "code": "FR", 4000 | "name": "France" 4001 | }, 4002 | { 4003 | "code": "TR", 4004 | "name": "Turkey" 4005 | } 4006 | ] 4007 | }, 4008 | { 4009 | "name": "First Chinese Warlord War", 4010 | "years": { 4011 | "start": 1920, 4012 | "end": 1920 4013 | }, 4014 | "deaths": 35000, 4015 | "nations": [ 4016 | { 4017 | "code": "CN", 4018 | "name": "China" 4019 | } 4020 | ] 4021 | }, 4022 | { 4023 | "name": "Franco-Syrian war ", 4024 | "years": { 4025 | "start": 1920, 4026 | "end": 1920 4027 | }, 4028 | "deaths": 3500, 4029 | "nations": [ 4030 | { 4031 | "code": "FR", 4032 | "name": "France" 4033 | }, 4034 | { 4035 | "code": "SY", 4036 | "name": "Syria" 4037 | } 4038 | ] 4039 | }, 4040 | { 4041 | "name": "Lithuanian-Polish War", 4042 | "years": { 4043 | "start": 1920, 4044 | "end": 1920 4045 | }, 4046 | "deaths": 1000, 4047 | "nations": [ 4048 | { 4049 | "code": "PL", 4050 | "name": "Poland" 4051 | }, 4052 | { 4053 | "code": "LT", 4054 | "name": "Lithuania" 4055 | } 4056 | ] 4057 | }, 4058 | { 4059 | "name": "Polish-Soviet War", 4060 | "years": { 4061 | "start": 1919, 4062 | "end": 1920 4063 | }, 4064 | "deaths": 100000, 4065 | "nations": [ 4066 | { 4067 | "code": "SJ", 4068 | "name": "Soviet Union" 4069 | }, 4070 | { 4071 | "code": "PL", 4072 | "name": "Poland" 4073 | } 4074 | ] 4075 | }, 4076 | { 4077 | "name": "Hungary Civil War", 4078 | "years": { 4079 | "start": 1919, 4080 | "end": 1920 4081 | }, 4082 | "deaths": 1500, 4083 | "nations": [ 4084 | { 4085 | "code": "HU", 4086 | "name": "Hungary" 4087 | } 4088 | ] 4089 | }, 4090 | { 4091 | "name": "First British-Waziristan War", 4092 | "years": { 4093 | "start": 1919, 4094 | "end": 1920 4095 | }, 4096 | "deaths": 2000, 4097 | "nations": [ 4098 | { 4099 | "code": "GB", 4100 | "name": "United Kingdom" 4101 | }, 4102 | { 4103 | "code": "PK", 4104 | "name": "Pakistan" 4105 | } 4106 | ] 4107 | }, 4108 | { 4109 | "name": "Latvian Liberation", 4110 | "years": { 4111 | "start": 1918, 4112 | "end": 1920 4113 | }, 4114 | "deaths": 13246, 4115 | "nations": [ 4116 | { 4117 | "code": "SJ", 4118 | "name": "Soviet Union" 4119 | }, 4120 | { 4121 | "code": "DE", 4122 | "name": "Germany" 4123 | }, 4124 | { 4125 | "code": "LV", 4126 | "name": "Latvia" 4127 | }, 4128 | { 4129 | "code": "EE", 4130 | "name": "Estonia" 4131 | } 4132 | ] 4133 | }, 4134 | { 4135 | "name": "Estonian Liberation War", 4136 | "years": { 4137 | "start": 1918, 4138 | "end": 1920 4139 | }, 4140 | "deaths": 11750, 4141 | "nations": [ 4142 | { 4143 | "code": "SJ", 4144 | "name": "Soviet Union" 4145 | }, 4146 | { 4147 | "code": "FI", 4148 | "name": "Finland" 4149 | }, 4150 | { 4151 | "code": "EE", 4152 | "name": "Estonia" 4153 | } 4154 | ] 4155 | }, 4156 | { 4157 | "name": "Caco Revolt", 4158 | "years": { 4159 | "start": 1918, 4160 | "end": 1920 4161 | }, 4162 | "deaths": 2102, 4163 | "nations": [ 4164 | { 4165 | "code": "US", 4166 | "name": "United States" 4167 | }, 4168 | { 4169 | "code": "HT", 4170 | "name": "Haiti" 4171 | } 4172 | ] 4173 | }, 4174 | { 4175 | "name": "Mexican Revolution ", 4176 | "years": { 4177 | "start": 1910, 4178 | "end": 1920 4179 | }, 4180 | "deaths": 125000, 4181 | "nations": [ 4182 | { 4183 | "code": "MX", 4184 | "name": "Mexico" 4185 | } 4186 | ] 4187 | }, 4188 | { 4189 | "name": "The Dervish State vs Ethiopia, Britain and Italy", 4190 | "years": { 4191 | "start": 1899, 4192 | "end": 1920 4193 | }, 4194 | "deaths": 6000, 4195 | "nations": [ 4196 | { 4197 | "code": "GB", 4198 | "name": "United Kingdom" 4199 | }, 4200 | { 4201 | "code": "SO", 4202 | "name": "Somalia" 4203 | }, 4204 | { 4205 | "code": "ET", 4206 | "name": "Ethiopia" 4207 | }, 4208 | { 4209 | "code": "DV", 4210 | "name": "Dervish State" 4211 | }, 4212 | { 4213 | "code": "IT", 4214 | "name": "Italy" 4215 | } 4216 | ] 4217 | }, 4218 | { 4219 | "name": "Sparticist Rising", 4220 | "years": { 4221 | "start": 1919, 4222 | "end": 1919 4223 | }, 4224 | "deaths": 2170, 4225 | "nations": [ 4226 | { 4227 | "code": "DE", 4228 | "name": "Germany" 4229 | } 4230 | ] 4231 | }, 4232 | { 4233 | "name": "Hungarian�Romanian War of 1919", 4234 | "years": { 4235 | "start": 1919, 4236 | "end": 1919 4237 | }, 4238 | "deaths": 11000, 4239 | "nations": [ 4240 | { 4241 | "code": "RO", 4242 | "name": "Romania" 4243 | }, 4244 | { 4245 | "code": "HU", 4246 | "name": "Hungary" 4247 | } 4248 | ] 4249 | }, 4250 | { 4251 | "name": "Third Anglo-Afghan War", 4252 | "years": { 4253 | "start": 1919, 4254 | "end": 1919 4255 | }, 4256 | "deaths": 2136, 4257 | "nations": [ 4258 | { 4259 | "code": "AF", 4260 | "name": "Afghanistan" 4261 | }, 4262 | { 4263 | "code": "GB", 4264 | "name": "United Kingdom" 4265 | } 4266 | ] 4267 | }, 4268 | { 4269 | "name": "Second Sino-Tibetan", 4270 | "years": { 4271 | "start": 1918, 4272 | "end": 1918 4273 | }, 4274 | "deaths": 1500, 4275 | "nations": [ 4276 | { 4277 | "code": "CN", 4278 | "name": "China" 4279 | } 4280 | ] 4281 | }, 4282 | { 4283 | "name": "Finnish Civil War", 4284 | "years": { 4285 | "start": 1918, 4286 | "end": 1918 4287 | }, 4288 | "deaths": 15150, 4289 | "nations": [ 4290 | { 4291 | "code": "FI", 4292 | "name": "Finland" 4293 | } 4294 | ] 4295 | }, 4296 | { 4297 | "name": "Southern China Revolt", 4298 | "years": { 4299 | "start": 1915, 4300 | "end": 1918 4301 | }, 4302 | "deaths": 1000, 4303 | "nations": [ 4304 | { 4305 | "code": "CN", 4306 | "name": "China" 4307 | } 4308 | ] 4309 | }, 4310 | { 4311 | "name": "World War I", 4312 | "years": { 4313 | "start": 1914, 4314 | "end": 1918 4315 | }, 4316 | "deaths": 10670868, 4317 | "nations": [ 4318 | { 4319 | "code": "AU", 4320 | "name": "Australia" 4321 | }, 4322 | { 4323 | "code": "DE", 4324 | "name": "Germany" 4325 | }, 4326 | { 4327 | "code": "FR", 4328 | "name": "France" 4329 | }, 4330 | { 4331 | "code": "GB", 4332 | "name": "United Kingdom" 4333 | }, 4334 | { 4335 | "code": "IT", 4336 | "name": "Italy" 4337 | }, 4338 | { 4339 | "code": "RU", 4340 | "name": "Russia" 4341 | }, 4342 | { 4343 | "code": "GR", 4344 | "name": "Greece" 4345 | }, 4346 | { 4347 | "code": "HU", 4348 | "name": "Hungary" 4349 | }, 4350 | { 4351 | "code": "TR", 4352 | "name": "Turkey" 4353 | }, 4354 | { 4355 | "code": "US", 4356 | "name": "United States" 4357 | }, 4358 | { 4359 | "code": "AT", 4360 | "name": "Austria" 4361 | }, 4362 | { 4363 | "code": "AD", 4364 | "name": "Andorra" 4365 | }, 4366 | { 4367 | "code": "BE", 4368 | "name": "Belgium" 4369 | }, 4370 | { 4371 | "code": "BR", 4372 | "name": "Brazil" 4373 | }, 4374 | { 4375 | "code": "CN", 4376 | "name": "China" 4377 | }, 4378 | { 4379 | "code": "CR", 4380 | "name": "Costa Rica" 4381 | }, 4382 | { 4383 | "code": "CU", 4384 | "name": "Cuba" 4385 | }, 4386 | { 4387 | "code": "CR", 4388 | "name": "Costa Rica" 4389 | }, 4390 | { 4391 | "code": "GT", 4392 | "name": "Guatemala" 4393 | }, 4394 | { 4395 | "code": "HT", 4396 | "name": "Haiti" 4397 | }, 4398 | { 4399 | "code": "HN", 4400 | "name": "Honduras" 4401 | }, 4402 | { 4403 | "code": "JP", 4404 | "name": "Japan" 4405 | }, 4406 | { 4407 | "code": "LR", 4408 | "name": "Liberia" 4409 | }, 4410 | { 4411 | "code": "ME", 4412 | "name": "Montenegro" 4413 | }, 4414 | { 4415 | "code": "NP", 4416 | "name": "Nepal" 4417 | }, 4418 | { 4419 | "code": "NI", 4420 | "name": "Nicaragua" 4421 | }, 4422 | { 4423 | "code": "PA", 4424 | "name": "Panama" 4425 | }, 4426 | { 4427 | "code": "PT", 4428 | "name": "Portugal" 4429 | }, 4430 | { 4431 | "code": "RO", 4432 | "name": "Romania" 4433 | }, 4434 | { 4435 | "code": "RU", 4436 | "name": "Russia" 4437 | }, 4438 | { 4439 | "code": "SM", 4440 | "name": "San Marino" 4441 | }, 4442 | { 4443 | "code": "RS", 4444 | "name": "Serbia" 4445 | }, 4446 | { 4447 | "code": "TH", 4448 | "name": "Thailand" 4449 | }, 4450 | { 4451 | "code": "CA", 4452 | "name": "Canada" 4453 | }, 4454 | { 4455 | "code": "AU", 4456 | "name": "Australia" 4457 | }, 4458 | { 4459 | "code": "MT", 4460 | "name": "Malta" 4461 | }, 4462 | { 4463 | "code": "NZ", 4464 | "name": "New Zealand" 4465 | }, 4466 | { 4467 | "code": "ZA", 4468 | "name": "South Africa" 4469 | }, 4470 | { 4471 | "code": "PH", 4472 | "name": "Philippines" 4473 | }, 4474 | { 4475 | "code": "PR", 4476 | "name": "Puerto Rico" 4477 | }, 4478 | { 4479 | "code": "AZ", 4480 | "name": "Azerbaijan" 4481 | }, 4482 | { 4483 | "code": "BG", 4484 | "name": "Bulgaria" 4485 | }, 4486 | { 4487 | "code": "AH", 4488 | "name": "Austria-Hungary" 4489 | }, 4490 | { 4491 | "code": "DV", 4492 | "name": "Dervish State" 4493 | }, 4494 | { 4495 | "code": "JS", 4496 | "name": "Jabal Shammar" 4497 | }, 4498 | { 4499 | "code": "OE", 4500 | "name": "Ottoman Empire" 4501 | } 4502 | ] 4503 | }, 4504 | { 4505 | "name": "Russia-Turkestan", 4506 | "years": { 4507 | "start": 1916, 4508 | "end": 1917 4509 | }, 4510 | "deaths": 1350, 4511 | "nations": [ 4512 | { 4513 | "code": "RU", 4514 | "name": "" 4515 | } 4516 | ] 4517 | }, 4518 | { 4519 | "name": "Chinese Govt vs Bai Lang (White Wolf) Rebels", 4520 | "years": { 4521 | "start": 1914, 4522 | "end": 1914 4523 | }, 4524 | "deaths": 5000, 4525 | "nations": [ 4526 | { 4527 | "code": "CN", 4528 | "name": "China" 4529 | } 4530 | ] 4531 | }, 4532 | { 4533 | "name": "2nd Balkan War ", 4534 | "years": { 4535 | "start": 1913, 4536 | "end": 1913 4537 | }, 4538 | "deaths": 60500, 4539 | "nations": [ 4540 | { 4541 | "code": "YU", 4542 | "name": "Yugoslavia" 4543 | }, 4544 | { 4545 | "code": "GR", 4546 | "name": "Greece" 4547 | }, 4548 | { 4549 | "code": "BG", 4550 | "name": "Bulgaria" 4551 | }, 4552 | { 4553 | "code": "OE", 4554 | "name": "Ottoman Empire" 4555 | }, 4556 | { 4557 | "code": "RO", 4558 | "name": "Romania" 4559 | } 4560 | ] 4561 | }, 4562 | { 4563 | "name": "Kuomintang vs Chinese Army ", 4564 | "years": { 4565 | "start": 1913, 4566 | "end": 1913 4567 | }, 4568 | "deaths": 5000, 4569 | "nations": [ 4570 | { 4571 | "code": "CN", 4572 | "name": "China" 4573 | } 4574 | ] 4575 | }, 4576 | { 4577 | "name": "Moro Rebellion", 4578 | "years": { 4579 | "start": 1913, 4580 | "end": 1913 4581 | }, 4582 | "deaths": 15050, 4583 | "nations": [ 4584 | { 4585 | "code": "US", 4586 | "name": "United States" 4587 | } 4588 | ] 4589 | }, 4590 | { 4591 | "name": "1st Balkan War", 4592 | "years": { 4593 | "start": 1912, 4594 | "end": 1913 4595 | }, 4596 | "deaths": 82000, 4597 | "nations": [ 4598 | { 4599 | "code": "RS", 4600 | "name": "Serbia" 4601 | }, 4602 | { 4603 | "code": "ME", 4604 | "name": "Montenegro" 4605 | }, 4606 | { 4607 | "code": "GR", 4608 | "name": "Greece" 4609 | }, 4610 | { 4611 | "code": "BG", 4612 | "name": "Bulgaria" 4613 | }, 4614 | { 4615 | "code": "MK", 4616 | "name": "Macedonia" 4617 | }, 4618 | { 4619 | "code": "OE", 4620 | "name": "Ottoman Empire" 4621 | } 4622 | ] 4623 | }, 4624 | { 4625 | "name": "First Sino-Tibetan War", 4626 | "years": { 4627 | "start": 1911, 4628 | "end": 1912 4629 | }, 4630 | "deaths": 2000, 4631 | "nations": [ 4632 | { 4633 | "code": "CN", 4634 | "name": "China" 4635 | } 4636 | ] 4637 | }, 4638 | { 4639 | "name": "Paraguay Coups", 4640 | "years": { 4641 | "start": 1911, 4642 | "end": 1912 4643 | }, 4644 | "deaths": 5000, 4645 | "nations": [ 4646 | { 4647 | "code": "PY", 4648 | "name": "Paraguay" 4649 | } 4650 | ] 4651 | }, 4652 | { 4653 | "name": "Italo-Turkish War", 4654 | "years": { 4655 | "start": 1911, 4656 | "end": 1912 4657 | }, 4658 | "deaths": 20000, 4659 | "nations": [ 4660 | { 4661 | "code": "idk: was IL", 4662 | "name": "" 4663 | }, 4664 | { 4665 | "code": "OE", 4666 | "name": "Ottoman Empire" 4667 | } 4668 | ] 4669 | }, 4670 | { 4671 | "name": "Cuba vs Partido Independiente de Color", 4672 | "years": { 4673 | "start": 1911, 4674 | "end": 1911 4675 | }, 4676 | "deaths": 1050, 4677 | "nations": [ 4678 | { 4679 | "code": "CU", 4680 | "name": "Cuba" 4681 | }, 4682 | { 4683 | "code": "US", 4684 | "name": "United States" 4685 | } 4686 | ] 4687 | }, 4688 | { 4689 | "name": "Chinese Revolution ", 4690 | "years": { 4691 | "start": 1911, 4692 | "end": 1911 4693 | }, 4694 | "deaths": 1000, 4695 | "nations": [ 4696 | { 4697 | "code": "CN", 4698 | "name": "China" 4699 | } 4700 | ] 4701 | }, 4702 | { 4703 | "name": "Asir-Yemen Revolt", 4704 | "years": { 4705 | "start": 1910, 4706 | "end": 1911 4707 | }, 4708 | "deaths": 9000, 4709 | "nations": [ 4710 | { 4711 | "code": "YE", 4712 | "name": "Yemen" 4713 | }, 4714 | { 4715 | "code": "OE", 4716 | "name": "Ottoman Empire" 4717 | } 4718 | ] 4719 | }, 4720 | { 4721 | "name": "French Conquest of Wadai Sultanate", 4722 | "years": { 4723 | "start": 1909, 4724 | "end": 1911 4725 | }, 4726 | "deaths": 12000, 4727 | "nations": [ 4728 | { 4729 | "code": "FR", 4730 | "name": "France" 4731 | }, 4732 | { 4733 | "code": "TD", 4734 | "name": "Chad" 4735 | } 4736 | ] 4737 | }, 4738 | { 4739 | "name": "The second Rif War", 4740 | "years": { 4741 | "start": 1909, 4742 | "end": 1910 4743 | }, 4744 | "deaths": 10000, 4745 | "nations": [ 4746 | { 4747 | "code": "MA", 4748 | "name": "Morocco" 4749 | }, 4750 | { 4751 | "code": "ES", 4752 | "name": "Spain" 4753 | } 4754 | ] 4755 | }, 4756 | { 4757 | "name": "Portugese war against Dembos", 4758 | "years": { 4759 | "start": 1907, 4760 | "end": 1910 4761 | }, 4762 | "deaths": 5100, 4763 | "nations": [ 4764 | { 4765 | "code": "PT", 4766 | "name": "" 4767 | }, 4768 | { 4769 | "code": "AO", 4770 | "name": "Angola" 4771 | } 4772 | ] 4773 | }, 4774 | { 4775 | "name": "Ma al-�Aynayn�s Anti-Colonial Insurgency ", 4776 | "years": { 4777 | "start": 1907, 4778 | "end": 1910 4779 | }, 4780 | "deaths": 3150, 4781 | "nations": [ 4782 | { 4783 | "code": "FR", 4784 | "name": "France" 4785 | }, 4786 | { 4787 | "code": "MA", 4788 | "name": "Morocco" 4789 | } 4790 | ] 4791 | }, 4792 | { 4793 | "name": "Korean guerilla war against Japanese occupation", 4794 | "years": { 4795 | "start": 1907, 4796 | "end": 1910 4797 | }, 4798 | "deaths": 17736, 4799 | "nations": [ 4800 | { 4801 | "code": "JP", 4802 | "name": "Japan" 4803 | }, 4804 | { 4805 | "code": "KR", 4806 | "name": "South Korea" 4807 | } 4808 | ] 4809 | }, 4810 | { 4811 | "name": "Iranian Constitution War", 4812 | "years": { 4813 | "start": 1908, 4814 | "end": 1909 4815 | }, 4816 | "deaths": 1100, 4817 | "nations": [ 4818 | { 4819 | "code": "IR", 4820 | "name": "Iran" 4821 | }, 4822 | { 4823 | "code": "RU", 4824 | "name": "Russia" 4825 | } 4826 | ] 4827 | }, 4828 | { 4829 | "name": "Morocco unrest", 4830 | "years": { 4831 | "start": 1907, 4832 | "end": 1908 4833 | }, 4834 | "deaths": 1400, 4835 | "nations": [ 4836 | { 4837 | "code": "MA", 4838 | "name": "Morocco" 4839 | }, 4840 | { 4841 | "code": "FR", 4842 | "name": "France" 4843 | } 4844 | ] 4845 | }, 4846 | { 4847 | "name": "4th Central American war ", 4848 | "years": { 4849 | "start": 1907, 4850 | "end": 1907 4851 | }, 4852 | "deaths": 1000, 4853 | "nations": [ 4854 | { 4855 | "code": "HN", 4856 | "name": "Honduras" 4857 | }, 4858 | { 4859 | "code": "SV", 4860 | "name": "El Salvador" 4861 | }, 4862 | { 4863 | "code": "NI", 4864 | "name": "Nicaragua" 4865 | } 4866 | ] 4867 | }, 4868 | { 4869 | "name": "Romanian Peasant Revolt", 4870 | "years": { 4871 | "start": 1907, 4872 | "end": 1907 4873 | }, 4874 | "deaths": 2000, 4875 | "nations": [ 4876 | { 4877 | "code": "RO", 4878 | "name": "Romania" 4879 | } 4880 | ] 4881 | }, 4882 | { 4883 | "name": "Dutch-Achinese War", 4884 | "years": { 4885 | "start": 1904, 4886 | "end": 1907 4887 | }, 4888 | "deaths": 24200, 4889 | "nations": [ 4890 | { 4891 | "code": "NL", 4892 | "name": "Netherlands" 4893 | } 4894 | ] 4895 | }, 4896 | { 4897 | "name": "Zulu Rebellion", 4898 | "years": { 4899 | "start": 1906, 4900 | "end": 1906 4901 | }, 4902 | "deaths": 2356, 4903 | "nations": [ 4904 | { 4905 | "code": "GB", 4906 | "name": "United Kingdom" 4907 | } 4908 | ] 4909 | }, 4910 | { 4911 | "name": "Sokoto and UK vs Mahdist Revolt", 4912 | "years": { 4913 | "start": 1906, 4914 | "end": 1906 4915 | }, 4916 | "deaths": 2080, 4917 | "nations": [ 4918 | { 4919 | "code": "GB", 4920 | "name": "United Kingdom" 4921 | }, 4922 | { 4923 | "code": "NG", 4924 | "name": "Nigeria" 4925 | } 4926 | ] 4927 | }, 4928 | { 4929 | "name": "Third Central American war ", 4930 | "years": { 4931 | "start": 1906, 4932 | "end": 1906 4933 | }, 4934 | "deaths": 1000, 4935 | "nations": [ 4936 | { 4937 | "code": "HN", 4938 | "name": "Honduras" 4939 | }, 4940 | { 4941 | "code": "SV", 4942 | "name": "El Salvador" 4943 | }, 4944 | { 4945 | "code": "GT", 4946 | "name": "Guatemala" 4947 | } 4948 | ] 4949 | }, 4950 | { 4951 | "name": "Russian Revolution 1905 ", 4952 | "years": { 4953 | "start": 1905, 4954 | "end": 1906 4955 | }, 4956 | "deaths": 1500, 4957 | "nations": [ 4958 | { 4959 | "code": "RU", 4960 | "name": "Russia" 4961 | } 4962 | ] 4963 | }, 4964 | { 4965 | "name": "Maji Maji revolt", 4966 | "years": { 4967 | "start": 1905, 4968 | "end": 1906 4969 | }, 4970 | "deaths": 8840, 4971 | "nations": [ 4972 | { 4973 | "code": "DE", 4974 | "name": "Germany" 4975 | }, 4976 | { 4977 | "code": "TZ", 4978 | "name": "Tanzania" 4979 | } 4980 | ] 4981 | }, 4982 | { 4983 | "name": "Southwest African Revolt", 4984 | "years": { 4985 | "start": 1904, 4986 | "end": 1905 4987 | }, 4988 | "deaths": 12800, 4989 | "nations": [ 4990 | { 4991 | "code": "DE", 4992 | "name": "Germany" 4993 | } 4994 | ] 4995 | }, 4996 | { 4997 | "name": "Russo-Japanese war", 4998 | "years": { 4999 | "start": 1904, 5000 | "end": 1905 5001 | }, 5002 | "deaths": 151831, 5003 | "nations": [ 5004 | { 5005 | "code": "JP", 5006 | "name": "Japan" 5007 | }, 5008 | { 5009 | "code": "RU", 5010 | "name": "Russia" 5011 | } 5012 | ] 5013 | }, 5014 | { 5015 | "name": "Second Yemen Rebellion", 5016 | "years": { 5017 | "start": 1904, 5018 | "end": 1904 5019 | }, 5020 | "deaths": 30000, 5021 | "nations": [ 5022 | { 5023 | "code": "OE", 5024 | "name": "Ottoman Empire" 5025 | } 5026 | ] 5027 | }, 5028 | { 5029 | "name": "Uruguay Civil War", 5030 | "years": { 5031 | "start": 1904, 5032 | "end": 1904 5033 | }, 5034 | "deaths": 1000, 5035 | "nations": [ 5036 | { 5037 | "code": "UY", 5038 | "name": "Uruguay" 5039 | } 5040 | ] 5041 | }, 5042 | { 5043 | "name": "Uprisings in Colonial Angola", 5044 | "years": { 5045 | "start": 1902, 5046 | "end": 1904 5047 | }, 5048 | "deaths": 2000, 5049 | "nations": [ 5050 | { 5051 | "code": "AO", 5052 | "name": "Angola" 5053 | }, 5054 | { 5055 | "code": "PT", 5056 | "name": "Portugal" 5057 | } 5058 | ] 5059 | }, 5060 | { 5061 | "name": "Ilinden Uprising", 5062 | "years": { 5063 | "start": 1903, 5064 | "end": 1903 5065 | }, 5066 | "deaths": 6330, 5067 | "nations": [ 5068 | { 5069 | "code": "OE", 5070 | "name": "Ottoman Empire" 5071 | } 5072 | ] 5073 | }, 5074 | { 5075 | "name": "The War of a Thousand Days ", 5076 | "years": { 5077 | "start": 1899, 5078 | "end": 1903 5079 | }, 5080 | "deaths": 100000, 5081 | "nations": [ 5082 | { 5083 | "code": "CO", 5084 | "name": "Colombia" 5085 | } 5086 | ] 5087 | }, 5088 | { 5089 | "name": "Philippine insurrection ", 5090 | "years": { 5091 | "start": 1899, 5092 | "end": 1902 5093 | }, 5094 | "deaths": 20500, 5095 | "nations": [ 5096 | { 5097 | "code": "PH", 5098 | "name": "Philippines" 5099 | }, 5100 | { 5101 | "code": "US", 5102 | "name": "United States" 5103 | } 5104 | ] 5105 | }, 5106 | { 5107 | "name": "Second Boer war", 5108 | "years": { 5109 | "start": 1899, 5110 | "end": 1902 5111 | }, 5112 | "deaths": 30800, 5113 | "nations": [ 5114 | { 5115 | "code": "GB", 5116 | "name": "United Kingdom" 5117 | }, 5118 | { 5119 | "code": "ZR", 5120 | "name": "Zuid-Afrikaansche Republiek" 5121 | } 5122 | ] 5123 | }, 5124 | { 5125 | "name": "Sino-Russian War", 5126 | "years": { 5127 | "start": 1900, 5128 | "end": 1900 5129 | }, 5130 | "deaths": 4000, 5131 | "nations": [ 5132 | { 5133 | "code": "RU", 5134 | "name": "Russia" 5135 | }, 5136 | { 5137 | "code": "CN", 5138 | "name": "China" 5139 | } 5140 | ] 5141 | }, 5142 | { 5143 | "name": "The Boxer Rebellion", 5144 | "years": { 5145 | "start": 1900, 5146 | "end": 1900 5147 | }, 5148 | "deaths": 3003, 5149 | "nations": [ 5150 | { 5151 | "code": "CN", 5152 | "name": "China" 5153 | }, 5154 | { 5155 | "code": "GB", 5156 | "name": "United Kingdom" 5157 | }, 5158 | { 5159 | "code": "JP", 5160 | "name": "Japan" 5161 | }, 5162 | { 5163 | "code": "RU", 5164 | "name": "Russia" 5165 | }, 5166 | { 5167 | "code": "FR", 5168 | "name": "France" 5169 | }, 5170 | { 5171 | "code": "US", 5172 | "name": "United States" 5173 | }, 5174 | { 5175 | "code": "DE", 5176 | "name": "Germany" 5177 | }, 5178 | { 5179 | "code": "IT", 5180 | "name": "Italy" 5181 | }, 5182 | { 5183 | "code": "AH", 5184 | "name": "Austria-Hungary" 5185 | } 5186 | ] 5187 | } 5188 | ] --------------------------------------------------------------------------------